blob: 7d380b0c7808c884cfffdb61b27c95cb98caf6f4 (
plain) (
tree)
|
|
// This is the global event dispatcher
// Do not add code to this file. Please only add callfuncs
//
// Author: meko
-|script|#GlobalHandler|32767
{
end;
OnPCLoginEvent:
set @login_event, 1;
callfunc "getHeadStyles"; // converts class, color and hair
callfunc "ClearVariables"; // removes / converts old variables
callfunc "DisplayMOTD"; // send the motd to the client, if enabled
callfunc "getBroadcast"; // get the scheduled broadcast, if any
// add more here
set @login_event, 2;
end;
OnPCKillEvent:
callfunc "elanore_decrease_exp"; // decrease heal exp for doing bad things
end;
OnPCKilledEvent:
callfunc "fightclub_event_killed"; // this is used by the 1v1 arena
end;
OnPCDieEvent:
callfunc "fightclub_GoBack"; // this used by the battle master
callfunc "fightclub_event_die"; // this is used by the 1v1 arena
end;
OnInit:
callfunc "ClearGlobalVars";
callfunc "MOTD"; // set the MOTD array
end;
}
|