* forgot to add conf option: "NOTIFYPING" * forgot to describe in prev. rev.: added new DefScript load definition: "#onload" & "#/onload". execute parts of scripts when they get loaded (to initialize stuff, for example)
37 lines
741 B
Modula-2
37 lines
741 B
Modula-2
#permission=255
|
|
|
|
// PSEUWOW DEF_SCRIPT WORLD-ENTER FILE
|
|
|
|
LOG * 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
|
|
// ...
|
|
|
|
|
|
LOG * finished executing script. |