Posts: 265
Threads: 59
Joined: Sep 2013
Quote:
Originally Posted by Jstylezzz
Let's start by removing the ';' at the end of
pawn Код:
CMD:kick(playerid, params[]);
|
Quote:
Originally Posted by Konstantinos
pawn Код:
CMD:kick(playerid, params[]);
Change to:
pawn Код:
CMD:kick(playerid, params[])
reason is declared as global variable. Just change to:
pawn Код:
new reason_[ 50 ], string_[ 128 ] ;
PS: Don't forget to replace them in the command too.
|
Thanks guys, fixed it.