mojo_client/bin/scripts/_enterworld.def
False.Genesis b15aff0b5d *New DefScript API functions: loadconf, applyconf, applypermissions; log, logdebug, logdetail (according to debug level set in conf).
-> moved conf loading from core to scripts.
*New DefScript call: _leaveworld.def
*Fixed crash when calling _leaveworld on ~WorldSession()
* some updates to internal variable name handling
* added new macro: @n : newline (\n)
* cleanups
* added a bunch of new scripts + examples
2007-01-29 15:09:11 +00:00

37 lines
741 B
Modula-2

#permission=255
// PSEUWOW DEF_SCRIPT WORLD-ENTER FILE
OUT * World entered, executing appropriate script...
// not yet implemented
// CASTSPELL 836
// MaNGOS: make PseuWoW invincible
SAY .gmon
// you can also teleport on every startup to a certain player...
// simple: use the .goname command as usual.
// SAY .goname Gamemaster
// or teleport to a specific loacation...
// .tele gmisland
// to know everything worked fine, etc
SAY [${@version_short}] login successful.
// yaay we are online. Ready!
// 126 = TEXTEMOTE_READY
EMOTE 126
// join some channels...
JOINCHANNEL generalchat
JOINCHANNEL help
JOINCHANNEL tradee
// ...
// add your own stuff here
// ...
OUT * finished executing script.