10 lines
293 B
Plaintext
10 lines
293 B
Plaintext
#include "hc_inc_helper"
|
|
|
|
void main()
|
|
{
|
|
SendMessageToPC(OBJECT_SELF,"That player is banned till server restart.");
|
|
SendMessageToAllDMs(GetName(OBJECT_SELF)+" just banned "+GetName(oMyTarget));
|
|
SetPersistentInt(oMod,"BANNED"+GetPCPublicCDKey(oMyTarget),1);
|
|
BootPC(oMyTarget);
|
|
}
|