AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   Help with VIP PLUGIN, not working buttons (https://forums.alliedmods.net/showthread.php?t=233562)

barnetas 01-16-2014 16:44

Help with VIP PLUGIN, not working buttons
 
Hey guys, im newbie here in alliedmodders and in scripting.

I just downloaded some VIP plugin v3.0 or something.

And there were just menu:

Get MKA1+Deagle
Get AK47+Deagle

I thought I need 2 more that I added some

Famas and AWP;

But when the menu shows, I press 1, its working m4a1 I get, I press 2 ak47 I get; but when I press 3 or 4 I dont get the guns ...

PLS HELP.

Code:

public Showrod(id) {
        show_menu(id, Keysrod, "Free VIP Guns^n\w1. Get M4A1+Deagle ^n\w2. Get AK47+Deagle ^n\w3. Get FAMAS+Deagle ^n\w4. Get AWP+Deagle^n0. Exit^n", -1, "rod") // Display menu
}
public Pressedrod(id, key) {
        /* Menu:
        * VIP Menu
        * 1. Gauti M4A1+Deagle
        * 2. Gauti AK47+Deagle
        * 3. Gauti Famas+Deagle
        * 4. Gauti AWP+Deagle
        * 0. Exit
        */
        switch (key) {
                case 0: {
                        if (user_has_weapon(id, CSW_C4) && get_user_team(id) == 1)
                                HasC4[id] = true;
                        else
                                HasC4[id] = false;
           
                        strip_user_weapons (id)
                        give_item(id,"weapon_m4a1")
                        give_item(id,"ammo_556nato")
                        give_item(id,"ammo_556nato")
                        give_item(id,"ammo_556nato")
                        give_item(id,"weapon_deagle")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"weapon_knife")
                        give_item(id,"weapon_hegrenade")
                        give_item(id, "weapon_flashbang");
                        give_item(id, "weapon_flashbang");
                        give_item(id, "weapon_smokegrenade");
                        give_item(id, "item_assaultsuit");
                        give_item(id, "item_thighpack");
                        client_print(id, print_center, "[ VIP ] Tu pasiemei nemokamai M4A1+deagle")
                       
                        if (HasC4[id])
                        {
                                give_item(id, "weapon_c4");
                                cs_set_user_plant( id );
                        }
                        }

                case 1: {
                        if (user_has_weapon(id, CSW_C4) && get_user_team(id) == 1)
                                HasC4[id] = true;
                        else
                                HasC4[id] = false;
           
                        strip_user_weapons (id)
                        give_item(id,"weapon_ak47")
                        give_item(id,"ammo_762nato")
                        give_item(id,"ammo_762nato")
                        give_item(id,"ammo_762nato")
                        give_item(id,"weapon_deagle")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"weapon_knife")
                        give_item(id,"weapon_hegrenade")
                        give_item(id, "weapon_flashbang");
                        give_item(id, "weapon_flashbang");
                        give_item(id, "weapon_smokegrenade");
                        give_item(id, "item_assaultsuit");
                        give_item(id, "item_thighpack");
                        client_print(id, print_center, "[ VIP ] Tu pasiemei nemokamai AK47+deagle")
                       
                        if (HasC4[id])
                        {
                                give_item(id, "weapon_c4");
                                cs_set_user_plant( id );
                        }
                        }


              case 2: {
                        if (user_has_weapon(id, CSW_C4) && get_user_team(id) == 1)
                                HasC4[id] = true;
                        else
                                HasC4[id] = false;
           
                        strip_user_weapons (id)
                        give_item(id,"weapon_famas")
                        give_item(id,"ammo_556nato")
                        give_item(id,"ammo_556nato")
                        give_item(id,"ammo_556nato")
                        give_item(id,"weapon_deagle")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"weapon_knife")
                        give_item(id,"weapon_hegrenade")
                        give_item(id, "weapon_flashbang");
                        give_item(id, "weapon_flashbang");
                        give_item(id, "weapon_smokegrenade");
                        give_item(id, "item_assaultsuit");
                        give_item(id, "item_thighpack");
                        client_print(id, print_center, "[ VIP ] Tu pasiemei nemokamai FAMAS+deagle")
                       
                        if (HasC4[id])
                        {
                                give_item(id, "weapon_c4");
                                cs_set_user_plant( id );
                        }
                        }

              case 3: {
                        if (user_has_weapon(id, CSW_C4) && get_user_team(id) == 1)
                                HasC4[id] = true;
                        else
                                HasC4[id] = false;
           
                        strip_user_weapons (id)

                        give_item(id,"weapon_awp")
                        give_item(id,"ammo_338magnum")
                        give_item(id,"ammo_338magnum")
                        give_item(id,"ammo_338magnum")
                        give_item(id,"weapon_deagle")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"ammo_50ae")
                        give_item(id,"weapon_knife")
                        give_item(id,"weapon_hegrenade")
                        give_item(id, "weapon_flashbang");
                        give_item(id, "weapon_flashbang");
                        give_item(id, "weapon_smokegrenade");
                        give_item(id, "item_assaultsuit");
                        give_item(id, "item_thighpack");

                        client_print(id, print_center, "[ VIP ] Tu pasiemei nemokamai AWP+deagle")
                       
                        if (HasC4[id])
                        {
                                give_item(id, "weapon_c4");
                                cs_set_user_plant( id );
                        }
                        }
                case 11:{                       
                }
        }
return PLUGIN_CONTINUE
}


wickedd 01-16-2014 19:31

Re: Help with VIP PLUGIN, not working buttons
 
Look at the top of the plugin for the line below and edit it

PHP Code:

#define Keysrod (1<<0)|(1<<1)|(1<<9) // Keys: 1234567890 

.

barnetas 01-17-2014 04:31

Re: Help with VIP PLUGIN, not working buttons
 
I just edited it and i've fixed it IT'S WORKING!
I knew that alliedmodders will help me!!
Thank you


All times are GMT -4. The time now is 10:09.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.