Recent content by Victor Koulikov

  1. V

    Question Cannot Run "zm_giant", Lighting issues (Please Help)

    I can't seem to play the "zm_giant" map that is provided in the mod tools. I had made a copy of it by "Save As" and naming it an existing mod map, so I could easily mod it. After trying to compile, I would get an error after rendering the lighting, and when I tried running the map, it would say...
  2. V

    Question How can I change the perk limit in zombies?

    I want to change the perk limit, player health, the length of bleedout time, and make Double Tap act like DP 2.0, preferably in the _zombiemode.gsc file so that these changes are always in effect without having to load a mod everytime you play. Reason being is I want to share this with my...
  3. V

    Answered How do you change starting pistol in zombies?

    I know I've said this a lot, but truly, thank you. I'm sorry you did so much work because I know next to nothing about scripting, but I'll look into learning it so I can do this kind of stuff myself. But now I have a change I really wanted working on all the maps. I tested TranZit, MotD and...
  4. V

    Answered How do you change starting pistol in zombies?

    It works perfect in MotD! But now in every other map I am... invincible. Self health is 300. I stood with a hoard of zombies was swiping at me, and on my screen it seems like I'm taking damage, but that red screen you see when you are one hit away from getting down never appears. Is there a...
  5. V

    Answered How do you change starting pistol in zombies?

    Will do as soon as I’m home. Tremendous thank again, I really appreciate it. :)
  6. V

    Answered How do you change starting pistol in zombies?

    No, I’m not. I don’t know what this is, I apologize, I’m new to scripting. I simply copied the function and put it at the bottom, thinking all I needed was the function.
  7. V

    Answered How do you change starting pistol in zombies?

    It doesn't work :/ I have tested with and without the other self.health. Without the other self health code, It takes 2 hits to get down on all maps. Is there something I need to put in inti() to make the function active?
  8. V

    Answered How do you change starting pistol in zombies?

    I do apologize, but I have an issue, with the map Mob of the Dead. The health increase doesn't work, I believe it's because the code is set to when to player spawns, when you first spawn in MotD you are in Afterlife mode. I assume the health increase is set on Afterlife mode, it didn't seem to...
  9. V

    Answered How do you change starting pistol in zombies?

    Oh, thank you VERY much. I was hoping to find a BO2 scripting forum, I thought I would only find those in Redacted related forums. Thank you :)
  10. V

    Answered How do you change starting pistol in zombies?

    You've made my day. :) Have a good one!
  11. V

    Answered How do you change starting pistol in zombies?

    Thank you... very much. I have plenty of other questions, but I'll just open a separate topic for it, hopefully someone else can help out. Thank you. :)
  12. V

    Answered How do you change starting pistol in zombies?

    init() { thread onplayerconnect(); //SetDvar("r_enablePlayerShadow", 1); // Causes laser flickering level.perk_purchase_limit = 13; self.health = 1000; self.maxhealth = self.health; } Sorry for late reply, internet went out for a bit.
  13. V

    Answered How do you change starting pistol in zombies?

    Map loads, still 2 hits to down. I've increased it to 1,000. Why doesn't it work? :confused:
  14. V

    Answered How do you change starting pistol in zombies?

    I wish I was knowledgeable enough on how to mod Redacted, so I can make map specific mods, where I can add the m1911. The help you gave me was still useful, I can spawn with the m1911 (or Mauser) and B23R at the same time. There's one other line of code that I would really appreciate it if you...
  15. V

    Answered How do you change starting pistol in zombies?

    I'm stupid. Well, I changed it and the map loads, but the starting pistol is still the Mauser. onPlayerSpawned() { self waittill("spawned_player"); self takeWeapon("m1911_zm"); self giveWeapon("m1911_zm"); self switchToWeapon("m1911_zm"); } EDIT: I have tested the Ray Gun Mark...
Top