Custom Pet Trainer Script menu

Shout-Out

User Tag List

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 34
  1. #16
    King Shaun's Avatar Member
    Reputation
    419
    Join Date
    Dec 2007
    Posts
    1,305
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great little release / share.

    Thanks for this, cannot rep at the moment.


    Threads of the Week: [Errage] [Blizzard] [Rapidshare]

    Custom Pet Trainer Script
  2. #17
    vb4evr's Avatar Member
    Reputation
    22
    Join Date
    Oct 2007
    Posts
    113
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks King Shaun. =)

    Here is the Pet Trainer [DLL] compiled for Ascent Stable 3.8 (works with latest trunk as well)

    Download here
    Last edited by vb4evr; 02-16-2008 at 07:09 PM.

  3. #18
    beltic's Avatar Member
    Reputation
    9
    Join Date
    May 2007
    Posts
    127
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vb4evr View Post
    Beltic here is the download link for entry 113911

    Filebeam download link
    thank you very much!

    I assume I can place this somewhere in the src tree and re-compile my ascent? (sorry - just starting to get into the compiling thing..
    Beltic
    Former Admin/Owner/Developer - Dead n Pissed PVP

  4. #19
    SectorSeven's Avatar Banned
    Reputation
    444
    Join Date
    Oct 2007
    Posts
    1,948
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very nice! Forgot to rep you

    +Rep x3 Nice contribution

  5. #20
    Tom_2001's Avatar Member
    Reputation
    177
    Join Date
    Oct 2007
    Posts
    609
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hmm could you show us one or two lines of Simple c++ too prove its yours? im just curiose

  6. #21
    vb4evr's Avatar Member
    Reputation
    22
    Join Date
    Oct 2007
    Posts
    113
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by beltic View Post
    thank you very much!

    I assume I can place this somewhere in the src tree and re-compile my ascent? (sorry - just starting to get into the compiling thing..
    Actually you would just need to put it into your script_bin folder. No need to recompile ascent.

  7. #22
    vb4evr's Avatar Member
    Reputation
    22
    Join Date
    Oct 2007
    Posts
    113
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you for the support wareagle920

    Originally Posted by Tom_2001 View Post
    hmm could you show us one or two lines of Simple c++ too prove its yours? im just curiose
    What exactly would you like to see Tom?

    Here is one of my case structures for the warp stalker menu to learn the warp spell first it checks the players level, then to see if the spell is already learned. I then set the cost of the spell to 60s, set current gold to what the player has in the inventory and then check to see if the player has enough gold. If true then subtracts the 60s from players gold, give confirmation your learned the spell, cheers ands the spell and completes the gossip script.

    Code:
    case 138: //Warp Spell id 35348
    {
    //Check if Player meets level requirement
    if (Plr->getLevel() >= 60)
    {
    //Spell Check
    if (!Plr->HasSpell(35348))
    {
    uint32 price = 60000;
    uint32 currentgold = Plr->GetUInt32Value(PLAYER_FIELD_COINAGE);
    //gold check
    if(currentgold>=price)
    {
    int32 newgold = currentgold - price;
    Plr->SetUInt32Value(PLAYER_FIELD_COINAGE,newgold);
    pCreature->SendChatMessage(CHAT_MSG_MONSTER_SAY, LANG_UNIVERSAL, "You have learned Warp");
    pCreature->Emote(EMOTE_ONESHOT_CHEER);
    Plr->addSpell(35348);
    Plr->Gossip_Complete();
    }
    else
    {
    pCreature->SendChatMessage(CHAT_MSG_MONSTER_SAY, LANG_UNIVERSAL, "I'm sorry, but you do not have the required funds for this training program");
    Plr->Gossip_Complete();
    }
    }
    else
    {
    pCreature->SendChatMessage(CHAT_MSG_MONSTER_SAY, LANG_UNIVERSAL, "I'm sorry, but you already know this level of Warp");
    Plr->Gossip_Complete();
    }
    }
    else
    {
    pCreature->SendChatMessage(CHAT_MSG_MONSTER_SAY, LANG_UNIVERSAL, "You are not experienced enough to learn this level of Warp");
    Plr->Gossip_Complete();
    }
    }
    break;

    Last edited by vb4evr; 02-16-2008 at 03:05 PM.

  8. #23
    fujisan's Avatar Member
    Reputation
    1
    Join Date
    Mar 2007
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can u make one for the new ascent pls thx

  9. #24
    vb4evr's Avatar Member
    Reputation
    22
    Join Date
    Oct 2007
    Posts
    113
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Fujisan have you tried the download I have above (i've also added the link to my main post) I've confirmed this to be working with most recent compiled version of ascent.

  10. #25
    fujisan's Avatar Member
    Reputation
    1
    Join Date
    Mar 2007
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ohh didnt see thx

  11. #26
    vb4evr's Avatar Member
    Reputation
    22
    Join Date
    Oct 2007
    Posts
    113
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fujisan View Post
    ohh didnt see thx
    No problem at all enjoy

  12. #27
    danis's Avatar Member
    Reputation
    5
    Join Date
    Jul 2007
    Posts
    274
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can u update thsi to 3905 pls?

  13. #28
    roguesownu's Avatar Member
    Reputation
    10
    Join Date
    Nov 2006
    Posts
    189
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    It worked...sorta

    The new SQL you gave me executed just fine, however, when I spawn the npc it doesn't do anything but greet you, it has no options or anything.
    The following statement is true
    The previous statement is false

  14. #29
    vb4evr's Avatar Member
    Reputation
    22
    Join Date
    Oct 2007
    Posts
    113
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @ Danis - is there a specific problem that is coming up when you try and use it as I've had it working on that revision with what the dll's posted.

    @roguesownu - Only thing I can think of off top of head is to try deleting your cache folder in your warcraft directory.
    Last edited by vb4evr; 02-17-2008 at 04:49 PM.

  15. #30
    Lich King's Avatar Contributor
    Reputation
    100
    Join Date
    May 2007
    Posts
    911
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice, good job

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. [Release][C++] Custom Pet Script
    By mager1794 in forum WoW EMU General Releases
    Replies: 3
    Last Post: 12-14-2009, 05:09 PM
  2. [Guide]How to make Custom Class Trainers and Npc.
    By Xcynic in forum WoW EMU Guides & Tutorials
    Replies: 56
    Last Post: 07-28-2009, 02:43 PM
  3. custom pet trainer script
    By glh290 in forum WoW EMU General Releases
    Replies: 5
    Last Post: 01-01-2009, 07:39 AM
  4. [Help] Custom Pet trainer.
    By the_venom in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 05-10-2008, 11:57 AM
  5. Pet Trainer in IF Airport
    By locoman997 in forum World of Warcraft Exploration
    Replies: 3
    Last Post: 12-31-2007, 08:29 AM
All times are GMT -5. The time now is 08:56 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search