SA-MP Forums Archive
undefined simbol pw - 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: undefined simbol pw (/showthread.php?tid=613405)



undefined simbol pw - Dejan12345 - 27.07.2016

Код:
 
format(pw, sizeof(pw), "%s", dini_Get(path, "password");
help


Re: undefined simbol pw - WhiteGhost - 27.07.2016

PHP код:
strmid(Player[playerid][Password], dini_Get(file"pw"), falsestrlen(dini_Get(file"Password")), MAX_PLAYER_NAME); 
Idk how you have your stuff,i just did this as an example..


Re: undefined simbol pw - Dejan12345 - 27.07.2016

dont work bro now compilation aborted


Re: undefined simbol pw - K0P - 27.07.2016

Код:
new pw[100];
format(pw, sizeof(pw), "%s", dini_Get(path, "password"));



Re: undefined simbol pw - DarkSkull - 27.07.2016

Dude, I posted in your other post.

PHP код:
new pw[128];
format(pwsizeof(pw), "%s"dini_Get(path"password")); 
EDIT: You missed a bracket in your other Post. I've fixed that as well.