warning 202: number of arguments does not match definition
#1

HELP ME PLEASE

what it this

Код:
C:\Users\Administrator\Documents\GTA San Andreas User Files\server\gamemodes\JIHANRAMADHAN.pwn(493) : warning 202: number of arguments does not match definition
Line 493

Код:
CMD:gofish(playerid, params[])
{
	new pName[MAX_PLAYER_NAME], string[128];
	SetPlayerInterior(playerid, 0);
	SetPlayerPos(playerid, -2105.3228, -124.2982, 37.2531);
	format(string, sizeof(string), " %s Telah Mengunjungi Pemancingan ", pName);
	SendClientMessageToAll(playerid, COL_HIJAU, string);
	return 1;
}
Reply
#2

pawn Код:
CMD:gofish(playerid, params[])
{
   new pName[MAX_PLAYER_NAME], string[128];
    SetPlayerInterior(playerid, 0);
    SetPlayerPos(playerid, -2105.3228, -124.2982, 37.2531);
    format(string, sizeof(string), " %s Telah Mengunjungi Pemancingan ", pName);
    SendClientMessageToAll(COL_HIJAU, string);
    return 1;
}
SendClientMessageToAll doesn't have "playerid" parameter.
Reply
#3

THANKS FOR HELP ME
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)