2 Errors { FAST HELP PLEASE }
#1

PHP код:
error 021symbol already defined"GivePlayerMoney"
error 010invalid function or declaration 
The Code of Stock

Код:
stock GivePlayerMoney(playerid, money)
{
     ResetPlayerMoney(playerid);
     GivePlayerMoney(playerid, money);
     return 1;
}
Reply
#2

There is already GivePlayerMoney added by SA:MP team... Use something else


pawn Код:
stock GivePlayerCash(playerid, money)
{
     ResetPlayerMoney(playerid);
     GivePlayerMoney(playerid, money);
     return 1;
}

ie:
https://sampwiki.blast.hk/wiki/Function:GivePlayerMoney
Reply
#3

You used the same function twice! Delete one!
Reply
#4

Thanks all worked


EDITED
Reply
#5

Quote:
Originally Posted by RedRex
Посмотреть сообщение
Yes man , i already add OnPlayerDeath So many of GivePlayerMoney so ... ??
Hold CTRL and press H

In "Search For" type in GivePlayerMoney and in "Replace With" type in GivePlayerCash, click on "Ok" then "Yes to All" easy as that.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)