hi spycho!
hi solved it this way in script:
i allow for example ussocom and knife sometimes, then if player join i do this:
procedure weapintro();
begin
command ('/weaponon 1');
command ('/weaponoff 2');
command ('/weaponoff 3');
command ('/weaponoff 4');
command ('/weaponoff 5');
command ('/weaponoff 6');
command ('/weaponoff 7');
command ('/weaponoff 8');
command ('/weaponoff 9');
command ('/weaponoff 10');
command ('/weaponon 11');
command ('/weaponon 12');
command ('/weaponoff 13');
command ('/weaponoff 14');
end;
procedure OnJoinTeam(ID, Team: byte);
begin
Nickname := IDToName(ID);
WriteConsole(0,'beware of Mr. '+Nickname,RGB(0,255,0));
weapintro();
...
... to be continued ...
...
end