Script Name: Killer_v1
Script Description: Simple script (my 1st)- kills everybody or selected team..
Original Author: RagCompile Test: PassedCore Version: 2.6.3
Hosted by: Soldat CentralFull Description: Usefull for all gamemodes (CTF, TM, DM, HTF, etc..)
Commands: For Players: !killer - just info that script is On/Off
For Admins:
/killer - turn script On/Off
/killall - kill all living Players on server
/killA - kill all living Players in Alpha team
/killB - kill all living Players in Bravo team
/killC - kill all living Players in Charlie team
/killD - kill all living Players in Delta team
/killN - kill all living Players in None(0) team -[Deathmatch]
Sample of script:function OnCommand(ID: Byte; Text: string): boolean;
begin
if (Text = '/killer') then
begin
if (scriptOn=0) then
begin
scriptOn:=1;
WriteConsole(0,'"Killer" has been Enabled. Watch out!', maincolor);
WriteLn('"Killer" has been turned ON.');
end
else
begin
scriptOn:=0;
WriteConsole(0,'"Killer" has been diasbled. Uff.', maincolor);
WriteLn('"Killer" has been turned OFF');
end;
end;
.......
____________________________________________________________________________________________________________________________Change Log 1.0 -> 1.1
- just shortened (it's got about 160 lines less than lastest version)
I'm waiting for your comments. I'll think about update it and add some stuff. If I made a mistake, I'm sorry for my english- It's not very good.
Thx for small help to iDante, Danmer and Vyka^^.