Exemple #1
0
    private void UnlockAllWeapons()
    {
        var msgBox = new GTA.MessageBox("Are you sure you want to \nunlock all weapons?");

        msgBox.Yes += (sender, args) => this.DoUnlockAllWeapons();
        this.View.AddMenu(msgBox);
    }
 private void UnlockAllWeapons()
 {
     var msgBox = new GTA.MessageBox( "Are you sure you want to \nunlock all weapons?" );
     msgBox.Yes += ( sender, args ) => this.DoUnlockAllWeapons();
     this.View.AddMenu( msgBox );
 }
Exemple #3
0
 private void UnlockAllWeapons(Ped playa)
 {
     var msgBox = new GTA.MessageBox("U wanna \nunlock all dem gunz?");
     msgBox.Yes += (sender, args) => this.DoUnlockAllWeapons(playa);
     this.View.AddMenu(msgBox);
 }