0 Members and 1 Guest are viewing this topic.
procedure OnJoinGame(ID, Team: byte);begin case GetPlayerStat(ID,'Name') of 'Vortex', 'Elite', 'Fallen': begin if GetPlayerStat(ID,'Human') = true then begin WriteConsole(ID,'Your name is disallowed, change it !',$FFFF0000); Command('/kick ' + IntToStr(ID)); end; end; case GetPlayerStat(ID,'Name') of 'Elite': BotChat(ID, 'Let''s rock !'); 'Vortex': BotChat(ID, 'WTF I''m doing here ? Anyway...Let''s have fun !'); 'Fallen': BotChat(ID, 'You''ll meet your destiny !'); end;end;