Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate
Collapse

Plutonium

Medisonundefined

Medison

@Medison
About
Posts
47
Topics
1
Shares
0
Groups
0
Followers
7
Following
6

Posts

Recent Best Controversial

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt did you know why am i have no weapon? also i cant even knife
    image.png
    Снимок экрана (16094).png
    Maybe deepseek wrote bad code for 2 kills change weapon

    OnPlayerKill()
    {
    self endon("disconnect");

    for (;;)
    {
        self waittill("killed_enemy");
    
        // Increment the kill counter
        self.pers["gun_game_kill_counter"]++;
    
        // Check if the player has reached 2 kills
        if (self.pers["gun_game_kill_counter"] >= 2)
        {
            // Reset the kill counter
            self.pers["gun_game_kill_counter"] = 0;
    
            // Update the score and weapon index
            self.pers["previous_score"] = (self.pers["previous_score"] + 50); // Prevent multi kills from giving score multiple times. This way our score is always equal to our current weapon index
            self.score = self.pers["previous_score"];
            self.pers["score"] = self.pers["previous_score"];
    
            if (self.score == (50 * level.gun_game_weapons_amount) - 50) // If we are at the last weapon
            {
                SetGameLimits(level.gun_game_weapons_amount); // Change the score limit (originally at 0 to prevent a multi kill bug) to one kill from now
            }
    
            self.pers["gun_game_current_index"]++;
            self.pers["gun_game_current_weapon"] = level.gun_game_current_game_weapons[self.pers["gun_game_current_index"]];
    
            if (self.pers["gun_game_current_index"] < level.gun_game_weapons_amount)
            {
                GiveGunGameWeapon(false);
                
                if (self.pers["gun_game_current_index"] == (level.gun_game_weapons_amount - 1)) // last weapon obtained
                {
                    maps\mp\_utility::playsoundonplayers("mp_enemy_obj_captured");
                }
                else
                {
                    self playlocalsound("mp_war_objective_taken");
                }
            }
            else
            {
                self.pers["gun_game_current_index"] = (level.gun_game_weapons_amount - 1); // Reset the index to max weapon index. This is so that we don't display Weapon: 19/18 for example
            }
        }
    }
    

    }

    MW3 Modding Releases & Resources

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt nevermind i find out how to fix in this line
    self.pers["gamemodeLoadout"]["loadoutStreakType"] = "specialist"
    should be
    self.pers["gamemodeLoadout"]["loadoutStreakType"] = "streaktype_specialist"; thanks a lot for the tip

    MW3 Modding Releases & Resources

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt its not working
    9517d81d-a9e9-4685-9add-bac0ee29f195-image.png

    MW3 Modding Releases & Resources

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt can you please help what i need too edit here i want specialist streak, i tried to edit myself but nothing works correctly
    bf5883fd-34a8-4b2f-9938-6758d3184326-image.png

    MW3 Modding Releases & Resources

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt if you are interested in seeing how ai edit your script here the screen, left is original script

    0f67ae00-5747-4992-8fb2-9c298c5fd66a-image.png

    MW3 Modding Releases & Resources

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt Nothing to be sorry about and yeah 2 kills works great

    MW3 Modding Releases & Resources

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt by the way deepseek able to edit script and it works great (i mean about 2 kills)

    MW3 Modding Releases & Resources

  • CS:GO dust2 map
    Medisonundefined Medison

    Resxt can you please upload all cs maps

    MW3 Modding Support & Discussion

  • Help to add specialist streak in @Resxt gun game script and also change gun after 2 kills not 1
    Medisonundefined Medison

    https://drive.google.com/file/d/19FFdNBL3-2R98Yv2dwT1qgE3rLqX1Go6/view?usp=sharing

    MW3 Modding Support & Discussion

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt Regarding the knife, I already found your script, disable damage

    MW3 Modding Releases & Resources

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt Sorry if I'm bothering you with all this, how to add specialist streak in this script and make zero damage knife?

    MW3 Modding Releases & Resources

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt Can you please do it in this file because I don't really understand what needs to be edited https://drive.google.com/file/d/19FFdNBL3-2R98Yv2dwT1qgE3rLqX1Go6/view?usp=sharing

    MW3 Modding Releases & Resources

  • [Release] Custom game modes: Reinforce, Gunfight and Gun Game
    Medisonundefined Medison

    gunmd0wn thanks now its working

    MW3 Modding Releases & Resources

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt it is possible in this script to change gun after 2 kills not 1

    MW3 Modding Releases & Resources

  • [Release] Custom game modes: Reinforce, Gunfight and Gun Game
    Medisonundefined Medison

    gunmd0wn i cant understand how to install gun game i put this tow scripts in scripts folder
    photo_2024-12-22_16-09-32.jpg
    Снимок экрана (15806).png

    MW3 Modding Releases & Resources

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt How to disable showing this errors in chat, this started appear in new version of pluto, in older version not showing errors in chat
    Снимок экрана (15805).png

    MW3 Modding Releases & Resources

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt its posible to disable gun game gamemode in console or only deleting script in scripts folder?

    MW3 Modding Releases & Resources

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt ok thanks i will try it

    MW3 Modding Releases & Resources

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt hello i saw gun game script and can change perks that always set by default, can you please make separate script that just give perks by default

    This is example from gungame script
    GiveGunGamePerks()
    {
    self GivePerk("specialty_fastreload", false); // Sleight of hand
    self GivePerk("specialty_longersprint", false); // Extreme conditioning
    self GivePerk(GetProPerkName("specialty_longersprint"), false); // Extreme conditioning PRO
    self GivePerk("specialty_quickdraw", false); // Quickdraw
    self GivePerk("specialty_bulletaccuracy", false); // Steady aim
    self GivePerk(GetProPerkName("specialty_bulletaccuracy"), false); // Steady aim PRO
    self GivePerk(GetProPerkName("specialty_quieter"), false); // Dead silence PRO
    }

    MW3 Modding Releases & Resources
  • 1
  • 2
  • 3
  • 2 / 3
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate