* fixed minor bug with uninitialized scenestate in gui * added some debug output to the WorldSession connection process, thx to visagalis for reporting a problem with it. real problem source yet unknown. *** please report any bugs!
37 lines
778 B
Modula-2
37 lines
778 B
Modula-2
#permission=255
|
|
|
|
// PSEUWOW DEF_SCRIPT WORLD-ENTER FILE
|
|
|
|
LOG * World entered, executing appropriate script...
|
|
|
|
// MaNGOS: make PseuWoW invincible
|
|
// CMD 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...
|
|
// CMD 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
|
|
//listchannel generalchat
|
|
// ...
|
|
|
|
// Spell 836 = LoginEffect
|
|
CASTSPELL 836
|
|
|
|
// add your own stuff here
|
|
// ...
|
|
|
|
|
|
LOG * finished executing script. |