24.12.2011, 14:35
Quote:
You shouldn't have the return in "return SendClientMessage..."
|
pawn Code:
Function1()
{
new bool:test = true;
if(test == true) print("1");
print("0");
}
pawn Code:
Function2()
{
new bool:test = true;
if(test == true) return print("1");
print("0");
return true;
}
pawn Code:
main()
{
Function1();
print("------");
Function2();
}
pawn Code:
if(isnull(params)) return SendClientMessage(playerid, 0xFF0000AA, "Usage: /radio <ur radio>");