Official Soldat Forums

Server Talk => Scripting Discussions and Help => Topic started by: addict on October 14, 2007, 05:34:57 am

Title: little problem help
Post by: addict on October 14, 2007, 05:34:57 am
procedure OnJoinGame(ID, Team: byte);
begin
 do SayToPlayer(NametoID(Name),Commands: !blue !red !spec); 
end;

-------------

 
Title: Re: little problem help
Post by: Toumaz on October 14, 2007, 05:38:52 am
...dare I recommend you taking some basic pascal tutorials before going any further?
Anyhow:

procedure OnJoinGame(ID, Team: byte);
begin
SayToPlayer(ID,'Commands: !blue !red !spec');
end;