SA-MP Forums Archive
Problem SARP - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Français/French (https://sampforum.blast.hk/forumdisplay.php?fid=30)
+---- Thread: Problem SARP (/showthread.php?tid=407300)



Problem SARP - Kevin60 - 13.01.2013

Bonjour

Jai un probleme avec le gm de SARP enfaite quand je reboot les biz achetй il ce mettent en vente toute seul et on dois faire /biz acheter pour achetй le biz . Moi je pense que la commande ne le save pas sur le mysql voici la commande :

pawn Code:
if(strcmp(subcmd, "acheter", true) == 0) // Acheter un biz
        {
            print("Lancement Boucle 121");
            for(new ba = 0; ba < totalbizz; ba++)
            {
                if(PlayerToPoint(2.0, playerid, BizzInfo[ba][bEntranceX], BizzInfo[ba][bEntranceY], BizzInfo[ba][bEntranceZ]) && BizzInfo[ba][bOwned] == 0)
                {
                    pay_tempPrice[playerid] = 10*BizzInfo[ba][bBuyPrice];
                    pay_tempArticle[playerid] = ba;
                    pay_tempType[playerid] = 6;
                    pay_showDialog(playerid, 10*BizzInfo[ba][bBuyPrice]);
                    break;
                }
            }
            print("Fin Boucle 121");
            return 1;
        }