SA-MP Forums Archive
Help please, whats wrong with thic command? - 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: Help please, whats wrong with thic command? (/showthread.php?tid=85957)



Help please, whats wrong with thic command? - Spatman - 10.07.2009

pawn Код:
if(strcmp(cmd, "/givegatekey", true) == 0)
    {
      giveplayerid = ReturnUser(tmp);
      if(IsPlayerConnected(giveplayerid))
        {
        if(PlayerInfo[playerid][pLeader] == 5)
            {
          if(giveplayerid != INVALID_PLAYER_ID)
                {
            new Float:x, Float:y, Float:z;
            GetPlayerPos(giveplayerid,x,y,z);
            if(!PlayerToPoint(15, playerid, x, y, z))
                    {
              SendClientMessage(playerid, COLOR_GRAD1, " Player is not near you!");
              return 1;
            }
            if(PlayerInfo[giveplayerid][pGatekey1] == 1)
                    {
              SendClientMessage(playerid, COLOR_GRAD1, " Player already haves your gate key!");
              return 1;
            }
            PlayerInfo[giveplayerid][pGatekey1] = 1;
            GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
            GetPlayerName(playerid, sendername, sizeof(sendername));
            format(string, sizeof(string), "* %s takes hes gates remote controller, and gives it to %s.", sendername ,giveplayer);
            ProxDetector(20.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
          }
            }
        else if(PlayerInfo[playerid][pLeader] == 9)
            {
          if(giveplayerid != INVALID_PLAYER_ID)
                {
            new Float:x, Float:y, Float:z;
            GetPlayerPos(giveplayerid,x,y,z);
            if(!PlayerToPoint(15, playerid, x, y, z))
                    {
              SendClientMessage(playerid, COLOR_GRAD1, " Player is not near you!");
              return 1;
            }
            if(PlayerInfo[giveplayerid][pGatekey2] == 1)
                    {
              SendClientMessage(playerid, COLOR_GRAD1, " Player already haves your gate key!");
              return 1;
            }
            PlayerInfo[giveplayerid][pGatekey2] = 1;
            GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
            GetPlayerName(playerid, sendername, sizeof(sendername));
            format(string, sizeof(string), "* %s takes hes gates remote controller, and gives it to %s.", sendername ,giveplayer);
            ProxDetector(20.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
          }
            }
When i type /givegatekey, nothing happens, absolutely nothing happens... I dont see any problem in the command, im getting confused... Please help.


Re: Help please, whats wrong with thic command? - Anarkien - 10.07.2009

Posted before: http://forum.sa-mp.com/index.php?top...5032#msg685032