[PAWNO ERROR] Undefined symbol "GivePlayerCash"
#4

Use GivePlayerMoneyEx
PHP код:
//==============================================================================
stock GivePlayerMoneyEx(playerid,amount)
{
    
ResetPlayerMoney(playerid);
    
SetPVarInt(playerid,"cash",GetPVarInt(playerid,"cash") + amount);
    if(
GetPVarInt(playerid,"cash") > GetPVarInt(playerid,"maxcash")) SetPVarInt(playerid,"maxcash",GetPVarInt(playerid,"cash"));
    return 
GivePlayerMoney(playerid,GetPVarInt(playerid,"cash"));
}
//==============================================================================
stock SetPlayerMoneyEx(playerid,amount)
{
    
ResetPlayerMoney(playerid);
    
SetPVarInt(playerid,"cash",amount);
    if(
GetPVarInt(playerid,"cash") > GetPVarInt(playerid,"maxcash")) SetPVarInt(playerid,"maxcash",GetPVarInt(playerid,"cash"));
    return 
GivePlayerMoney(playerid,GetPVarInt(playerid,"cash"));
}
//==============================================================================
stock GetPlayerMoneyEx(playerid)return GetPVarInt(playerid,"cash");
//============================================================================== 
Reply


Messages In This Thread
[PAWNO ERROR] Undefined symbol "GivePlayerCash" - by RobyRbb - 26.03.2017, 13:15
Re: [PAWNO ERROR] Undefined symbol "GivePlayerCash" - by Sibuscus - 26.03.2017, 13:34
Re: [PAWNO ERROR] Undefined symbol "GivePlayerCash" - by RobyRbb - 26.03.2017, 13:38
Re: [PAWNO ERROR] Undefined symbol "GivePlayerCash" - by jasperschellekens - 26.03.2017, 13:55
Re: [PAWNO ERROR] Undefined symbol "GivePlayerCash" - by RobyRbb - 26.03.2017, 14:00

Forum Jump:


Users browsing this thread: 1 Guest(s)