[C++]Simple script generator menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    uberhak3r's Avatar Active Member
    Reputation
    72
    Join Date
    Mar 2006
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [C++]Simple script generator

    Hey guys, if your making mobs or something simple you can use this tool I made to speed it up.

    INPUT:


    OUTPUT:
    Code:
    //Batman
    
    #include <StdAfx.h>
    #include <Setup.h>
    #include <Base.h>
    
    #define Batman 12345
    
    #define spell0 66408
    #define spell1 26043
    #define spell2 62945
    #define spell3 42869
    
    class BatmanAI : public ArcScriptBossAI {
    	ARCSCRIPT_FACTORY_FUNCTION(BatmanAI, ArcScriptBossAI);
    		BatmanAI(Creature* pCreature) : ArcScriptBossAI(pCreature) {
    
    AddSpell(spell0, Target_Current, 15, 0, 20);
    AddSpell(spell1, Target_Current, 15, 0, 50);
    AddSpell(spell2, Target_Current, 15, 0, 45);
    AddSpell(spell3, Target_Current, 15, 0, 32);
    }
    
    void AIUpdate() {
    	ParentClass::AIUpdate();
    	ParentClass::AIUpdate();
    }
    
    void SetupWorldBoss(ScriptMgr* pScriptMgr) {
    pScriptMgr->register_creature_script(Batman, &BatmanAI::Create);
    }
    Just enter the boss name, id and what spells you want it to cast and when and it'll generate a cpp script.

    Enjoy
    http://www.mediafire.com/?bk539yopettyc2g
    Last edited by uberhak3r; 11-19-2010 at 03:06 PM. Reason: updated link

    [C++]Simple script generator
  2. #2
    Kiev's Avatar Contributor
    Reputation
    288
    Join Date
    Nov 2007
    Posts
    1,819
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice release. Like the idea behind it.

    +Rep.

  3. #3
    Found's Avatar Banned
    Reputation
    239
    Join Date
    Mar 2009
    Posts
    642
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very nice share. +Rape and +Rep

  4. #4
    osiri's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very nice im new in c++ and this will help em and also lots of other C++ users alot +rep

  5. #5
    frathir3's Avatar Member
    Reputation
    1
    Join Date
    Sep 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how do you get c++ scripts into the core?

  6. #6
    Confucius's Avatar Panda of Worlds The Idiot

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1389
    Join Date
    Oct 2007
    Posts
    2,590
    Thanks G/R
    267/283
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very nice idea +Rep no doubt

  7. #7
    alamiku's Avatar Banned
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice ty for sharing

  8. #8
    szotyo's Avatar Private
    Reputation
    1
    Join Date
    Dec 2009
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That sir, is EPIC WIN. +Rep!

  9. #9
    malacz's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this is for? mangos or arcemu?

  10. #10
    uberhak3r's Avatar Active Member
    Reputation
    72
    Join Date
    Mar 2006
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    arcemu

    filler

  11. #11
    griim's Avatar Member
    Reputation
    4
    Join Date
    Jun 2008
    Posts
    146
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is epic =p

  12. #12
    thebigman's Avatar Contributor Reliable Trader
    CoreCoins Purchaser
    Reputation
    89
    Join Date
    Dec 2008
    Posts
    605
    Thanks G/R
    2/0
    Trade Feedback
    26 (96%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just needs phases and stuff and it would be perfect.
    goodjob +2rep

  13. #13
    Griozx's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Liked it very mutch

  14. #14
    SideWays's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice release. Is there something like this for Mangos too?

  15. #15
    Brucey125's Avatar Corporal
    Reputation
    5
    Join Date
    Nov 2009
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice and simple - good to see for people learning :P try some full C++ scripting soon its fun

Page 1 of 2 12 LastLast

Similar Threads

  1. [Misc] Simple SQL Script Generator With Source!
    By Pedregon in forum WoW EMU Programs
    Replies: 7
    Last Post: 09-14-2010, 01:25 PM
  2. LUA Script Generator 1.3
    By fastelf in forum WoW EMU Programs
    Replies: 26
    Last Post: 08-22-2010, 03:35 PM
  3. [Share] Lua Script Generator! Bosses and More [EPIC]
    By MisterEMU in forum WoW EMU Programs
    Replies: 23
    Last Post: 11-10-2008, 02:30 AM
  4. Anti-AFK Using a Simple Script
    By Deamonlord in forum World of Warcraft Bots and Programs
    Replies: 11
    Last Post: 08-11-2008, 10:59 PM
  5. WarpNPC script generator
    By alek900 in forum WoW EMU Programs
    Replies: 44
    Last Post: 05-08-2008, 10:54 AM
All times are GMT -5. The time now is 12:12 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search