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

Plutonium

Medisonundefined

Medison

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

Posts

Recent Best Controversial

  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt how to add throwing knife in your script one in the chamber i try to add this but not working

    image.png


  • [Pre-Release] IW5 Survival Reimagined v2
    Medisonundefined Medison

    A1EX1S 3e0b6a8a-b3f6-408b-a0ae-bfae0a973529-image.png
    2715d79f-ee0a-4b77-9663-8879e040c508-image.png
    In third step you need go to private match go to game setup and at the bottom load from recipe disk chose survival than you can select map etc


  • [Pre-Release] IW5 Survival Reimagined v2
    Medisonundefined Medison

    LastDemon99 how to add and change coordinates for perks (i want to add because i set that i can have 7 perks)
    image.png


  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt Okay, please forgive me for disturbing you.


  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt


  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt i have bat file and how to make that command fs_game mods/survival will load, i tried +fs_game mods/survival but its not working
    95d47c28-a98b-4a20-b090-0ec8ace3a950-image.png


  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt what console command for coordinates hud like cg_drawfps


  • [Pre-Release] IW5 Survival Reimagined v2
    Medisonundefined Medison

    if i add coordinates for custom map they will work or also something need to be done for proper work on custom map? (and also i know that i need bot waypoints for custom map) and can you please suggest a console command to show coordinates?
    image.png


  • [Pre-Release] IW5 Survival Reimagined v2
    Medisonundefined Medison

    LastDemon99
    image.png


  • [Pre-Release] IW5 Survival Reimagined v2
    Medisonundefined Medison

    LastDemon99 today i played with my friends and i screenshot crash massage, when I'll be home i send screenshot, when there were the first crashes, there was also this message, but I forgot to take a screenshot (or wait you said that on your new optimized version no crash message, but in public version you also have something about script memory in massage?)


  • My collection of IW5 scripts
    Medisonundefined Medison

    Resxt can you please tell me is there a command to pause the server in a private match


  • [Pre-Release] IW5 Survival Reimagined v2
    Medisonundefined Medison

    Crash on 20 wave and game said that memory leak, so we need to wait for optimized new version?


  • [Pre-Release] IW5 Survival Reimagined v2
    Medisonundefined Medison

    1AkimkA1 Use console command (load_dsr survival) when you in private match and after you enter the command you can see that your gamemode that writen in icon of the map changed to survival


  • 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
            }
        }
    }
    

    }


  • 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


  • My collection of IW5 scripts
    Medisonundefined Medison

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


  • 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

  • 1 / 1
  • Login

  • Don't have an account? Register

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