SA-MP Forums Archive
FALSE and STRCPY - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: FALSE and STRCPY (/showthread.php?tid=507633)



FALSE and STRCPY - Fachrul48 - 18.04.2014

hello there buddy , i need your help
Код:
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(3825) : error 017: undefined symbol "FALSE"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(8112) : error 017: undefined symbol "strcpy"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(8278) : error 017: undefined symbol "strcpy"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(30760) : error 017: undefined symbol "strcpy"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(30761) : error 017: undefined symbol "strcpy"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(37837) : error 017: undefined symbol "strcpy"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(37838) : error 017: undefined symbol "strcpy"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(37911) : error 017: undefined symbol "strcpy"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(37912) : error 017: undefined symbol "strcpy"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(40407) : error 017: undefined symbol "strcpy"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(42639) : error 017: undefined symbol "strcpy"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(42749) : error 017: undefined symbol "strcpy"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(52595) : error 017: undefined symbol "strcpy"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(58807) : error 017: undefined symbol "strcpy"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(87574) : error 017: undefined symbol "strcpy"
C:\Users\Fachrul\Downloads\Compressed\SAMP\gamemodes\ggrpeconomy.pwn(52124) : warning 204: symbol is assigned a value that is never used: "oldoID"



Re: FALSE and STRCPY - M3HR4N - 18.04.2014

give the whole code ...


Re: FALSE and STRCPY - Fachrul48 - 18.04.2014

Line 8112
strcpy(PlayerInfo[playerid][pAdminban], "None", MAX_PLAYER_NAME);


Re: FALSE and STRCPY - Konstantinos - 18.04.2014

Add the macro to your script:
pawn Код:
#define strcpy(%0,%1,%2) strcat((%0[0] = '\0', %0), %1, %2)
about the "FALSE", you need to show us where you use it.


Re: FALSE and STRCPY - Fachrul48 - 18.04.2014

thx strcpy is working ! thx but false still not work
this is the line
GivePlayerCash(playerid, -RefuelingVehiclePrice[playerid]);


Re: FALSE and STRCPY - Konstantinos - 18.04.2014

Re-check the line. It doesn't contain any "FALSE" in it.


Re: FALSE and STRCPY - Fachrul48 - 18.04.2014

stock StopRefueling(playerid)
{
GivePlayerCash(playerid, -RefuelingVehiclePrice[playerid]);
SendFormattedMessage(playerid, COLOR_WHITE,"Tangki kendaraan anda sudah terisi seharga $%d.", RefuelingVehiclePrice[playerid]);


Re: FALSE and STRCPY - Konstantinos - 18.04.2014

It's from SendFormattedMessage. Declare FALSE:
pawn Код:
new FALSE;



Re: FALSE and STRCPY - Fachrul48 - 18.04.2014

ok thx ! i will rep you if i can !