gsc scripts not working
-
Hi guys, I've been trying to use some scripts I found in here, like godmode, unlimited ammo, etc, I did everything the tutorial told me to do, I went to %localappdata%/plutonium/storage/iw5 and created the "scripts" folder, then pasted the .gsc scripts right there, just like the tutorial says, but when I go to play a private match, get into the game, nothing happens, the scripts doesn't load at all, could you please help me?, I've tried everything and nothing works, it keeps not loading the scripts.
I have the game in my (D:) disk.
This is the link where I had the scripts: https://github.com/Resxt/Plutonium-IW5-Scripts/tree/main/chat_commands
-
C_Killer_5000 You need to read the instructions well. In the same GitHub it tells you how to implement the scripts so that they work.
https://github.com/Resxt/Plutonium-IW5-Scripts/tree/main/chat_commands#configuration -
Kalitos thank you for the help, but I don't know how to do all of that, just in case, do you have any god mode and unlimited ammo script that you don't need to follow hard instructions for them to work?, that'll be amazing, really.
-
C_Killer_5000 It is the most complete and easy to implement script I know. Just dedicate yourself to read the instructions carefully.
-
Kalitos okay, I'll do it, thank you sm!
-
The instructions are very simple, don't include anything other scripts don't have plus everything is documented.
This is lack of basic knowledge on how Plutonium works on your part more than "hard instructions". You install the files you want and type the command in the chat. That's it.
I think you mix comprehensive instructions and hard to understand instructions
-
Resxt So I don't need to have a IW4MAdmin server to use the scripts I want?, when you said "install the files you want and type the command in the chat", you reffer to the .gsc files in the scripts folder?, if so, I already did it and then typed the commands in game but nothing happened, they don't even show up in the "waiting for teams to be ready" screen in game as the tutorial on "how to load a script" shows like the following image:
-
C_Killer_5000 yes and yes. The only thing you need to know when it comes to these chat commands and IW4MAdmin is explained on the repo, don't use the same command prefix like
!
.The screenshot you're looking at is an EXAMPLE script that's coded to show green text in the middle of the screen. Thankfully not all scripts do that or you would be spammed with this. It only shows in the console once a game is loaded. You can send a screenshot of your console if you're unsure (after loading a map in a private game for example)
-
this is my console at a private match.
-
C_Killer_5000 you can see it compiles all the chat commands scripts. Have you tried typing
!giveweapon me iw5_acr_mp
for example? -
Resxt I just typed it but nothing happened
thank you for your time and help, I really appreciate it
it says in the game: uknown cmd !god
I tried: !god me but still nothing happens, it says unknown cmd !god
why is it so hard
-
C_Killer_5000 If you use !IWM4Admin", it should be capturing the command before the script. That's why in the guide it says
You must use another "prefix" -
Kalitos I'm not using IW4MAdmin, now I don't know how to change the value of cc_prefix dvar, I don't even know where it is, I'm sorry, I'm just starting in this world.
-
C_Killer_5000 Another question, where you are typing the command "!giveweapon me iw5_acr_mp", you need to do it within the in-game chat.
-
-
C_Killer_5000 not to be annoying but the script is called CHAT commands
-
Resxt I can see now, I'm new over here, sorry for all the trouble, thank you, it won't happen again.
-
C_Killer_5000 no worries. Glad you got it to work. Enjoy
-
Π‘an someone tell me if there is a gsc script for issuing perks to oneself?
I know that you can use this code, but it gives out perks to everyone, and I would like only me to have perks. It would be very convenient to get them in the same way as weapons or killstreaks via !giveperk me as in the gsc script examples.OnPlayerSpawned()
{
self endon("disconnect");
for(;;)
{
self waittill("changed_kit");GivePerks(); }
}
GivePerks()
{
self setperk( "specialty_quickdraw", true, false); -
It gives perks to everyone because there's no condition checking for a username or whatever. This is completely normal and expected