03.06.2018, 21:00
Excuse me guys can you help em with this pls?
line 1723 to 1733
Код:
C:\Users\Jaua\Downloads\samp037_svr_R2-1-1_win32\gamemodes\baserp.pwn(1724) : error 021: symbol already defined: "cmd_kill" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.
PHP код:
CMD:kill(playerid)
{
if (IsPlayerConnected(playerid))
{
SendClientMessage(playerid, 0xFF8282AA, "You lost $1,000 to pay for your antidepressants.");
SendClientMessage(playerid, 0xFF8282AA, "Before you are discharged, Hospital staff will confiscate your weapons.");
GivePlayerMoney(playerid, -1000);
SetPlayerHealth(playerid,0);
}
return 1;
}