From 131887c981d92f7a3d7c0fd793b24e305e70320b Mon Sep 17 00:00:00 2001 From: Stanislav Zhukov Date: Wed, 13 Jul 2016 02:49:14 +0800 Subject: [PATCH] Delete script.pwn Not for this repo. --- files/tes3mp/files/scripts/script.pwn | 96 --------------------------- 1 file changed, 96 deletions(-) delete mode 100644 files/tes3mp/files/scripts/script.pwn diff --git a/files/tes3mp/files/scripts/script.pwn b/files/tes3mp/files/scripts/script.pwn deleted file mode 100644 index 89c10fd67..000000000 --- a/files/tes3mp/files/scripts/script.pwn +++ /dev/null @@ -1,96 +0,0 @@ - - -public OnServerInit() -{ - -} - -public OnServerExit(Bool:error) -{ - -} - -public OnGameTimeChange(year, month, day, hour, minute) -{ - -} - -public OnClientAuthenticate(const name{}, const pwd{}) -{ - return true; -} - - -public OnPlayerDisconnect(ID, reason) -{ - -} - - -public OnPlayerRequestGame(ID) -{ - //return 0x00000000; -} - -public OnPlayerChat(ID, message{}) -{ - return 1; -} - -public OnSpawn(ID) -{ - if (IsPlayer(ID)) - { - new message {MAX_MESSAGE_LENGTH}; - GetBaseName(ID, message); - - strformat(message, sizeof(message), true, "Hello, %s!", message); - UIMessage(ID, message); - } -} - -public OnActivate(ID, actor) -{ - -} - -public OnCellChange(ID, cell) -{ - -} - -blic OnItemCountChange(ID, count) -{ - -} - -public OnItemConditionChange(ID, Float:condition) -{ - -} - -public OnItemEquippedChange(ID, Bool:equipped) -{ - -} - -public OnItemPickup(ID, actor) -{ - return 1; -} - - -public OnActorSneak(ID, Bool:sneaking) -{ - -} - -public OnActorDeath(ID, killer, Death:cause) -{ - -} - -public OnActorAttack(victim, attacker, weapon, damage) -{ - -}