HELPPP - 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: HELPPP (
/showthread.php?tid=594644)
HELPPP -
DeividasArma - 21.11.2015
Hi i have a problem with register system
ERROR
Код HTML:
(927) error 029: invalid expression, assumed zero
(927) error 029: invalid expression, assumed zero
(927) error 029: invalid expression, assumed zero
(927) fatal error 107: too many error messages on one line
Code
Код HTML:
public LData(playerid)
{
new name[MAX_PLAYER_NAME], file[256];
GetPlayerName(playerid, name, sizeof(name));
format(file, sizeof(file), "players/%s.ini", name);
GivePlayerMoney(playerid, dini_Int(file, "Money"));
THIS >>>(927) PInfo[playerid][adminlevel] = dini_Int(file, "AdminLevel");[/code]);
return 1;
}
Re: HELPPP -
DeividasArma - 21.11.2015
Quote:
Originally Posted by Karan007
PHP код:
public LData(playerid){
new name[MAX_PLAYER_NAME], file[256];
GetPlayerName(playerid, name, sizeof(name));
format(file, sizeof(file), "players/%s.ini", name);
GivePlayerMoney(playerid, dini_Int(file, "Money"));
PInfo[playerid][adminlevel] = dini_Int(file, "AdminLevel"); // Fixed.
return 1;}
|
Thx,but i have now this problem when i''m trying turn on server
Script[gamemode/GM.amx]: Run time error 19: "File or function is not found"
Re: HELPPP -
DeividasArma - 21.11.2015
But i'm already have dini
Re: HELPPP -
DeividasArma - 21.11.2015
Register system is OK,but when i'm add some Mapps,then i got this error Script[gamemode/GM.amx]: Run time error 19: "File or function is not found"
Re: HELPPP -
iKarim - 21.11.2015
You sure you ain't using a plugin which isn't loaded?
ex: using sscanf include in codes; no plugin loaded.
that would cause this error; Missing a plugin.
Re: HELPPP -
DeividasArma - 21.11.2015
I tried to install the Streamer .
But deleting all files Streamer because I did not need it
and then attempting to activate the server I threw this error
Re: HELPPP -
iKarim - 21.11.2015
Remove your '#include <streamer>' from your gamemode then.
Re: HELPPP -
DeividasArma - 21.11.2015
Quote:
Originally Posted by PawnHunter
Remove your '#include <streamer>' from your gamemode then.
|
Ohh I'm forgot the Include<streamer> in my Gamemode..THX