SA-MP Forums Archive
Problem - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Problem (/showthread.php?tid=69500)



Problem - ryoere2k8 - 18.03.2009

Hey I'm a beginner scripter and I tried to modify /pstats a bit on SeifAdmin.

pawn Код:
if(strcmp(cmd, "/stats", true) == 0) // See a players stats
        {
          tmp = strtok(cmdtext, idx);
            if(!strlen(tmp)) return SendClientMessage(playerid, ORANGE, "USAGE: /stats [playername/id]");
            new targetid = ReturnUser(tmp);
            if (targetid != INVALID_PLAYER_ID)
            {
                new Float:health,Float:armor;
                GetPlayerHealth(targetid,health);
                GetPlayerArmour(targetid,armor);
            GetPlayerName(targetid, giveplayername, sizeof(giveplayername));
                format(string, sizeof(string), "=[Pure Everything Stats For %s]=",giveplayername, health,GetPlayerMoney(targetid),AccountInfo[targetid][Warns],armor);
                SendClientMessage(playerid,RED,string);
                if(AccountInfo[giveplayerid][Logged] == 1) SendClientMessage(playerid, PURPLE, "=[Logged In: Yes]=");
                else if(AccountInfo[giveplayerid][Logged] == 0) SendClientMessage(playerid, PURPLE, "=[Logged In: No]=");
                format(string, sizeof(string), "=[AdminLevel:%d]",AccountInfo[AdminLevel]);
                SendClientMessage(playerid,RED,string);
            }
            else SendClientMessage(playerid, RED, "Player is not active.");
        }
        return 1;
So, Thats what I had did so far so i decided to test that, I couldn't /login even though I got 0 errors
this is all that comes up
Код:
\filterscripts\SeifAdmin.pwn(1977) : warning 217: loose indentation
\filterscripts\SeifAdmin.pwn(1992) : warning 213: tag mismatch
\filterscripts\SeifAdmin.pwn(1997) : warning 217: loose indentation
\filterscripts\SeifAdmin.pwn(1998) : warning 225: unreachable code
\filterscripts\SeifAdmin.pwn(1998) : warning 217: loose indentation
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


5 Warnings.
Plz help I want to get this working so I can try to add more
oh by the way I removed the IsPlayerAdmin cause i wanted to make it into a cmd that players could do.


Re: Problem - ryoere2k8 - 18.03.2009

Sorry for double post >.<


Re: Problem - ryoere2k8 - 18.03.2009

Anyone?


Re: Problem - ryoere2k8 - 18.03.2009

Please help I really need this.


Re: Problem - Pyrokid - 18.03.2009

Don't quadruple post...

What are lines 1992 and 1998?


Re: Problem - Danut - 18.03.2009

http://pastebin.com/m79a217a6


Re: Problem - Pyrokid - 18.03.2009

What are the exact lines of the problems?


Re: Problem - Danut - 18.03.2009

Quote:
Originally Posted by [Fackin'
Pyro ]
What are the exact lines of the problems?
don't double post


Re: Problem - Pyrokid - 18.03.2009

Quote:
Originally Posted by MoroJr™
Quote:
Originally Posted by [Fackin'
Pyro ]
What are the exact lines of the problems?
don't double post
Who the fuck double posted?


Re: Problem - ryoere2k8 - 18.03.2009

Quote:
Originally Posted by [Fackin'
Pyro ]
Quote:
Originally Posted by MoroJr™
Quote:
Originally Posted by [Fackin'
Pyro ]
What are the exact lines of the problems?
don't double post
Who the fuck double posted?
line 1992 format(string, sizeof(string), "=[AdminLevel:%d]",AccountInfo[AdminLevel]);
line 1998 if(strcmp(cmd, "/fuck", true) == 0) // Sends a player in the air and explodes