My collection of IW5 scripts
-
A collection of scripts I made that might also be useful for other people whether it is to drag and drop scripts on your server or for learning purposes.
If you have issues or suggestions feel free to reply to this topic.Everything is explained on the Github page
Also if you want a script added don't hesitate to ask.
I might not work on bigger/custom scripts but if you have an idea of a generic script that could be useful to anyone I might do itLast, here are the names of the scripts available so that you can quickly view/search a script.
-
camera switch vote on button press
-
sniper attachment switch on button press
-
suicide on button press
-
chat commands
-
automatic weapons rewards
-
launchers weapons rewards
-
disable nuke effects all
-
disable nuke effects all but fog
-
disable nuke effects emp
-
disable nuke effects slowmo
-
disable nuke effects vision
-
all or nothing
-
chaos
-
gun game
-
kamikaze
-
one in the chamber
-
mapvote
-
replace with snipers
-
replace rsass with intervention
-
anti hardscope
-
autoassign team
-
change team names
-
disable damages
-
disable nuke killstreak
-
display player stats
-
get player guid
-
give perks on spawn
-
hardcore tweaks
-
jump monitor
-
kill players under map
-
kill stuck bots
-
manage bots fill
-
remove heavy weapon slow
-
show text on first spawn
-
welcome message
-
-
Thanks, I've been waiting for this for a long time.
-
tell me please how to edit gungame script i wanna have specialist bonus and how to fix lags with this script and also disable 10 min timer
-
Can you write a script so that when using the scavenger perk you can still reload bullets for grenades, RPGs or grenade launchers?
Please -
knifes12 I don't have time anymore but you could create a topic on the forum or ask on the modding channel on the server
It would probably just be waiting for a notify and refilling offhand etc
-
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
} -
Medison you just take this function and keep what's calling it and what's calling the caller and so on
-
Resxt ok thanks i will try it
-
hi can you make sabotages game mod like mw1 Or can port the game mod itself?
Because the sabotages game mode in mw 3 is only one round and end the game( cannot be changed) -
No sorry
-
Resxt Do you know someone to help with this?
Is it possible to port the mw1 game mod to mw3 ? -
esiii I don't know
-
Hi, friends! Tell me how to add a line with low health?
Init()
{
level.teamTweaks["fftype"].value = 1; // Disable friendly fire
level.gameTweaks["allowkillcam"].value = 1; // Enable killcams - doesn't seem to work anymore
level.killcam = false; // Enable killcams
self.maxhealth = 10;
}โself.maxhealth = 10;โ - This method doesn't work...
-
CoBa_09 this method might work but you're doing it completely wrong
I think you can just change HP in the DSR file of the gamemode
-
Resxt Thanks, friend! But in the directory "Plutonium\storage\iw5", there are no files with such extension...
-
CoBa_09 this is when you save a gamemode from private games or when you have a server (then it's in the main folder of your game folder iirc)
-
Resxt I want to use these settings for private game with bots
-
CoBa_09 then save a gamemode and edit the dsr file it saves on your PC, change the maxhealth value
-
Resxt Excellent! Everything worked out! Thank you very much, friend!