Weird Problem
#1

Whenever I use the server/game-mode restart command (/gmx) after logging in, I die when I spawn and my skin is set to 0. It's just now that I've experienced this, no errors on the script, no crashes or anything. Any suggestions on how to fix this?
Reply
#2

I suggest you never call 'gmx' in the server console. Make a command so it calls it via the script, and also kicks the players so that they have to restart their game. Thinks get buggy when a client does't restart on gmx's.

pawn Код:
CMD:gmx(playerid, params[])
{
    for(new i=0;i<MAX_PLAYERS;i++) // loops through all the players
    {
        Kick(i); // kicks them
    {
    SendRconCommand("gmx"); // Sends the Rcon command.
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)