Saving skin after gmx - 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: Saving skin after gmx (
/showthread.php?tid=321078)
Saving skin after gmx -
Kolten - 25.02.2012
I have a problem when i setplayerskin and tyre /rcon gmx player get skin 0.It's work only when player go relog,but when i gmx it's not work.I use y_ini register system and i put SetPlayerSkin(playerid, PlayerInfo[playerid][pSkin]); in OnPlayerSpawn callback.
EDIT: FIXED
https://sampforum.blast.hk/showthread.php?tid=292813
Re: Saving skin after gmx -
FalconX - 25.02.2012
Quote:
Originally Posted by Kolten
I have a problem when i setplayerskin and tyre /rcon gmx player get skin 0.It's work only when player go relog,but when i gmx it's not work.I use y_ini register system and i put SetPlayerSkin(playerid, PlayerInfo[playerid][pSkin]); in OnPlayerSpawn callback.
|
It seems like when you type /rcon gmx the server restarts but on restarting it doesn't save in the player's file.. In my opinion you should use a server control panel stop/start buttons/links rather then to use /rcon gmx or if you have a home hosted server the just close the SA-MP server and open it again, as it gets bug sometimes in most of the servers.
Maybe a player who is trying to join he get's the message saying "You are banned from this server." I've noticed this many times.
-FalconX
Re: Saving skin after gmx -
Kolten - 25.02.2012
Quote:
Originally Posted by ue_falconx
It seems like when you type /rcon gmx the server restarts but on restarting it doesn't save in the player's file.. In my opinion you should use a server control panel stop/start buttons/links rather then to use /rcon gmx or if you have a home hosted server the just close the SA-MP server and open it again, as it gets bug sometimes in most of the servers.
Maybe a player who is trying to join he get's the message saying "You are banned from this server." I've noticed this many times.
-FalconX
|
No it's home server.Also i found something from ******
https://sampforum.blast.hk/showthread.php?tid=250369 but it's not work.
Re: Saving skin after gmx -
Kolten - 26.02.2012
bump...can someone help me?
Re: Saving skin after gmx -
emokidx - 26.02.2012
you can create a command "/gmx" using SendRconCommand (something like that) and save it there.
Re: Saving skin after gmx -
Kolten - 26.02.2012
i made this:
PHP код:
CMD:gmx(playerid,params[])
{
if(PlayerInfo[playerid][pAdmin] < 6) return SendClientMessage(playerid, COLOR_WHITE,"Niste admin.");
foreach(Player, x)
{
CallRemoteFunction("OnPlayerDisconnect", "ii", x, 101);
SavePlayerAccount(playerid);
}
CallRemoteFunction("OnGameModeExit", "");
GameModeExit();
return 1;
}
Re: Saving skin after gmx -
emokidx - 26.02.2012
maybe this will work
pawn Код:
CMD:gmx(playerid, params[])
{
if(PlayerInfo[playerid][pAdmin] < 6) return SendClientMessage(playerid, COLOR_WHITE,"Niste admin.");]
foreach(Player, x)
{
SavePlayerAccount(playerid);
}
SendRconCommand("gmx");
return 1;
}
Re: Saving skin after gmx -
Voldemort - 26.02.2012
SavePlayerAccount(x);
And dont call OnPlayerDisconnect, as player DC anyways :P
Re: Saving skin after gmx -
Kolten - 26.02.2012
Quote:
Originally Posted by emokidx111
maybe this will work
pawn Код:
CMD:gmx(playerid, params[]) { if(PlayerInfo[playerid][pAdmin] < 6) return SendClientMessage(playerid, COLOR_WHITE,"Niste admin.");] foreach(Player, x) { SavePlayerAccount(playerid); } SendRconCommand("gmx"); return 1; }
|
still nothing..
Re: Saving skin after gmx -
Voldemort - 26.02.2012
Quote:
Originally Posted by Kolten
still nothing..
|
Dont copy and paste, understand what you do