Résolu Besoin aide pour creation mod menu gsc

CestMonAimbot

Membre
Inscription
18 Décembre 2016
Messages
81
Réactions
8
Points
1 791
salut j'ai un probleme sur gsc studio en crean un mod menu je vous envoie le screen à la ligne 223 suis qui trouve me rendera un grand service !!!





dsl pour les fautes de orthographes :D
 

Fichiers joints

  • Capture.PNG
    Capture.PNG
    102.2 KB · Affichages: 9

Richi987

Membre
Inscription
8 Octobre 2014
Messages
707
Réactions
120
Points
7 376
Re ducoupc'est pas au 224 m'est 223 c'est les balle ilimiter qui marche pas comment faire
Tiens les balles infinies
Code:
toggleUnlimitedAmmo()
{
     self.unlimitedAmmo = booleanOpposite(self.unlimitedAmmo);
     self iPrintln(booleanReturnVal(self.unlimitedAmmo, "Balles Infinies [^1OFF^7]", "Balles Infinies [^2ON^7]"));
     if(self.unlimitedAmmo)self thread unlimitedAmmo();
     else self notify("unlimitedAmmoEnded");
}

unlimitedAmmo()
{
    self endon("disconnect");
    self endon("unlimitedAmmoEnded");
    while(true)
    {
        currentWeapon = self getcurrentweapon();
        if (currentWeapon != "none")
        {
            self setweaponammoclip(currentWeapon, weaponclipsize(currentWeapon));
            self givemaxammo(currentWeapon);
        }
        currentoffhand = self getcurrentoffhand();
        if (currentoffhand != "none")
        {
            self givemaxammo(currentoffhand);   
        }
        wait 0.1;
    }
}
 

VeXiioZ-HD

Membre
Inscription
1 Octobre 2014
Messages
266
Réactions
71
Points
7 051
Screenshot_78.png
Screenshot_1.png
Screenshot_2.png
 
Dernière édition:
Haut