03.05.2014, 06:05
how i can i remove that warning?
line 1863
this is the code OnPlayerDeath
Код:
C:\Users\Louis Alcosaba\Desktop\LSCNR\gamemodes\1.2.pwn(1863) : warning 202: number of arguments does not match definition Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Warning.
Код:
GetPlayerMoney(playerid, -10000);
Код:
public OnPlayerDeath(playerid, killerid, reason) { new string[120]; GetPlayerMoney(playerid, -10000); SendClientMessage(playerid, COLOR_WHITE, "You have been charged $10,000 for medical services."); SetPlayerWantedLevel(playerid, 0); if(!IsPlayerConnected(killerid)) { format(string, sizeof(string), "[DEATH]: %s Killed Himself.", PlayerInfo(playerid)); print(string); return 1; }