Likes: 0
Results 1 to 2 of 2
Thread: [HOWTO] Compile Custom Scripts
-
26-02-09, 03:38 PM #1
[HOWTO] Compile Custom Scripts
Register to remove this adHere is a handy guide on how to compiel custom scripts for those who dont know how
THE SCRIPT IM USING AS AN EXAMPLE IS PORTABLE TELEPORTER FROM
ASPIREDEV
Heres one way to compile scripts even if you have almost 0 C++ knowledge.
First off do a fresh compile of ArcEmu
Now head to arcemudirectory/src/scripts/src
Now take GossipScripts and copy and paste a new folder out of it by right clicking it and copy then right clicking and paste.
You now have this
Now rename it to anything you want i will be renaming it CustomScript just for the guide youu can name it anything you want.
Now its time to edit the makefile.am Open up MakeFile.am still inside the src/scripts/src folder and it shoudl say the following
Code:SUBDIRS = GossipScripts InstanceScripts ServerStatusPlugin SpellHandlers LUAScripting
Code:SUBDIRS = GossipScripts CustomScript InstanceScripts ServerStatusPlugin SpellHandlers LUAScripting
Now close the makefile and delete
Code:Gossip_Battlemaster.cpp Gossip_Innkeeper.cpp GuardGossip.cpp
Now you add your scripts in (the .cpp's)
I am only adding the teleporter so i have this now
Now head to CustomScript and open makefile.am in notepad
You should see this on the bottom line
Code:libGossipScripts_la_SOURCES = Gossip_Battlemaster.cpp Gossip_Innkeepers.cpp GuardGossip.cpp Setup.cpp
Code:libGossipScripts_la_SOURCES = Script Name.cpp Setup.cpp
Change Script Name to your script name
Ok Now it is time to open up Setup.cpp and this should be in the middle
Code:extern "C" SCRIPT_DECL uint32 _exp_get_script_type() { return SCRIPT_TYPE_MISC; } extern "C" SCRIPT_DECL void _exp_script_register(ScriptMgr* mgr) { SetupInnkeepers(mgr); SetupBattlemaster(mgr); SetupGuardGossip(mgr); } #ifdef WIN32
Code:SetupInnkeepers(mgr); SetupBattlemaster(mgr); SetupGuardGossip(mgr);
now open your script (.cpp) and search for
Code:class SCRIPT_DECL
Code:class SCRIPT_DECL Pwarper : public GossipScript
Now go back to your Setup.cpp and where the
Code:SetupInnkeepers(mgr); SetupBattlemaster(mgr); SetupGuardGossip(mgr);
Code:SetupPwarper(mgr);
it now looks like this
Code:extern "C" SCRIPT_DECL uint32 _exp_get_script_type() { return SCRIPT_TYPE_MISC; } extern "C" SCRIPT_DECL void _exp_script_register(ScriptMgr* mgr) { SetupPwarper(mgr); } #ifdef WIN32
Should say
Code:#ifndef INSTANCE_SCRIPTS_SETUP_H #define INSTANCE_SCRIPTS_SETUP_H void SetupInnkeepers(ScriptMgr * mgr); void SetupGuardGossip(ScriptMgr * mgr); void SetupBattlemaster(ScriptMgr * mgr); #endif
Code:void SetupInnkeepers(ScriptMgr * mgr); void SetupGuardGossip(ScriptMgr * mgr); void SetupBattlemaster(ScriptMgr * mgr);
Code:void SetupPwarper(ScriptMgr * mgr);
ALMOST DONE!!!!
Head to the Arcemu root folder and look for configure.ac
Inside configure.ac search for ARCEMU_CONFIG_FILES
You should see
Code:AC_CONFIG_FILES([ ./Makefile src/Makefile src/arcemu-shared/Makefile src/arcemu-world/Makefile src/arcemu-logonserver/Makefile src/arcemu-voicechat/Makefile src/arcemu-realmserver/Makefile src/scripts/Makefile src/scripts/src/Makefile src/scripts/src/GossipScripts/Makefile src/scripts/src/InstanceScripts/Makefile src/scripts/src/ServerStatusPlugin/Makefile src/scripts/src/SpellHandlers/Makefile src/scripts/src/LUAScripting/Makefile extras/Makefile extras/collision/Makefile extras/collision/collision_dll/Makefile ])
Code:AC_CONFIG_FILES([ ./Makefile src/Makefile src/arcemu-shared/Makefile src/arcemu-world/Makefile src/arcemu-logonserver/Makefile src/arcemu-voicechat/Makefile src/arcemu-realmserver/Makefile src/scripts/Makefile src/scripts/src/Makefile src/scripts/src/GossipScripts/Makefile src/scripts/src/InstanceScripts/Makefile src/scripts/src/ServerStatusPlugin/Makefile src/scripts/src/CustomScript/Makefile src/scripts/src/SpellHandlers/Makefile src/scripts/src/LUAScripting/Makefile extras/Makefile extras/collision/Makefile extras/collision/collision_dll/Makefile ])
head to ArcEmu/src/scripts/projects
And look for GossipScripts2003,2005, or 2008 depending on what visual studio you have. I am using 2008
Copy and paste it to make a copy then rename your copy anything you want.
Now you have to open it up with notepad and use Find and Replace you want to change the word GossipScripts to CustomScript then click replace all now save and open with Visual Studio.
Now click the little + sign next to CustomScript and delete all the files in them then go to Add then Existing Item and add your Setup.h and Setup.cpp from your CustomScript folder and also add your script.
the Setup files go in main resources and your script goes in Scripts.
Now just hit F7 and away you go!
This will not work unless you have already compiled Arcemu
--------------------------------
CREDITS
Aldaus for the original guide.
HellSpawn for spending hours re-writing and updating it to look like the recent ArcEmu
› See More: [HOWTO] Compile Custom Scripts
-
03-03-09, 10:33 AM #2
Thanks...
Register to remove this adThanks for this useful guide it helped me out alot. I have been struggling with this for a while now, lol...