call of duty: black ops 3 scripts question

  1. BunkerBaerIGER

    Answered How To Use Custom Buttons (GSC) ?

    Hey does anyone know how to use custom buttons on GSC? Like if(self actionslotoneButtonPressed()) { }
  2. T

    Answered How do I display the weapon strings in a mod menu? Black Ops 3 GSC Script

    So I have been trying (and failing) to get this menu I'm making to list the weapons automatically via an array. Problem is, the weapon name is blank in the menu but if I click the option it will still give the weapon. Below is what my script looks like right now. standard =...
  3. TyNotTie

    Answered Where can I getting started with Black Ops 3 GSC Modding?

    Hello i am kinda new to modding on call of duty I heard alot about GSC and stuff and i want to learn but i just Don't know where and how to start also is there like a GSC injector like DLL's?
  4. JayCoder

    Answered Help Timer Script for Black Ops 3?

    I'm a bit rusty but I think this is a timer script function TimerOn() { for(i = 0:00; i < 99:99 ; i++) { wait 0.1; P("Timer: " + i); wait 0.1; } } function P(text) { iprintln(text); }
  5. Alexisloic21

    Answered Black Ops 3 GSC Script - How to use SetRoundsPlayed() function?

    Hello I am trying to find out how I can set the round to the player I have to use this function but it does not work : SetRoundsPlayed(<value>) thanks for reply
  6. K

    Answered Syntax Error mod menu

    if i try to use a filelocation in my script example: self scripts/mp/killstreaks/_uav::AddActiveUAV() it gives an syntax error when i compile it This error pls help me
  7. K

    Answered Barrier script

    i need a a script that disable the warning when your outside the map i search google for it but i cant find one i hope that there is one :D
  8. K

    Answered Hud Elements

    Does somebody know what code is for animated background for mod menu example: self.AIO["background"] = createRectangle("LEFT", "CENTER", -380, 45, 0, 285, (0, 0, 0), "white", 1, 0); if you see this code the "white" is the one that need to be changed for an animated background somebody know some...
  9. R

    Answered Setting text to a hud element without using SetText()?

    Right now i'm having a problem using SetText(), in a loop anyways it crashes after 25 - 30 minutes of game time. The error: BG_Cache_GetIndexInternal - Exceeded '2048' items for type 'string' Does NewHudElem have a text property I can use? .text doesn't work.
  10. E

    Question Having problems with hud elements

    So I'm really confused as to why no text shows. I don't even know if I used spawnstruct like it's suppose to be used. So I would be really happy if someone could help me out here and maybe explain what i did wrong. I haven't been working with gsc for a long time so yeah... #using...
  11. K

    Question my mod menu script the verification system doesnt work

    This is my script /* ┏━━━┓╋╋┏┓╋┏━━━┓╋╋╋╋╋┏━┓┏━┓╋╋╋╋┏┓╋┏┓ ┃┏━┓┃╋╋┃┃╋┃┏━┓┃╋╋╋╋╋┃┃┗┛┃┃╋╋╋╋┃┃╋┃┃ ┃┃╋┗╋━━┫┗━┫┃╋┗╋━━┳━┓┃┏┓┏┓┣━━┳━┛┣━┛┣┳━┓┏━━┓ ┃┃╋┏┫┏┓┃┏┓┃┃╋┏┫┏┓┃┏┓┫┃┃┃┃┃┏┓┃┏┓┃┏┓┣┫┏┓┫┏┓┃ ┃┗━┛┃┏┓┃┗┛┃┗━┛┃┗┛┃┃┃┃┃┃┃┃┃┗┛┃┗┛┃┗┛┃┃┃┃┃┗┛┃ ┗━━━┻┛┗┻━━┻━━━┻━━┻┛┗┻┛┗┛┗┻━━┻━━┻━━┻┻┛┗┻━┓┃...
  12. C

    Question B03 Mod scripting help!

    I'm Trying to make a mod that changes the way you play zombies. I want to be able to script so i can edit the way these player functions work. This is a mod i just want personally for myself to have fun with The amount of player health you start off with A way to change the effects of the...
  13. A

    Question how to remove/hide gadget from screen?

    I created Survival mod Steam Workshop :: Survival bots Rise I want to remove/hide this thing that i point to in the image i try look for it so hard, but did not found yet.. * i don't want to remove everything in screen like in hardcore. i want to add there mini challenges like in mw3...
  14. A

    Answered How can I target the level using a Script within a Mod?

    I'm wanting to make a mod where whenever it is in use, the pack a punch camo for that level is swapped to Dark Matter (index 17). I also want to make the player's points 50,000 on startup and change the perk cap to 9. All of these are below as follows: I found these strings from mapping...
  15. C

    Answered How do I spawn triggers with GSC

    Im wondering if it's possible to spawn triggers with GSC. If so, is it possible to place a trigger somewhere and buy a gun from it or open a door with it? I hope I can link a trigger to one of the doors in Shadows of Evil just to test if it works to open it with a trigger spawned with GSC. Btw...
  16. Cxwh

    Answered Waittill after blackscreen ZM

    Ik theres a flag or something for it but i cannot find it ;(
  17. JayCoder

    Answered What's wrong with these scripts

    look at this been trying to get this to work void <player> SetDoubleJumpEnergy(<energy>) [MANDATORY] <energy> % energy to set on the player CATEGORY: CLIENT/SERVER: Server SUMMARY: Sets a double jump energy amount on the player EXAMPLE: player SetDoubleJumpEnergy( <energy> ) //example of my...
  18. Cxwh

    Answered Could something like this work?

    Is there any way to get something like this to work? function monitorButtons() { test = &testButton; for(;;) { if(test) self iPrintln("^1test"); wait 0.05; } } function testButton() { //level.players[0] since you cant pass args return...
  19. JayCoder

    Answered Help what's wrong here?

    self.Void.RGBEditor["RGBT"+i] = createText("CENTER", "CENTER", "DEFAULT", 1, (i*23)-0, -20, 2, 1, self.curs[i]); self.Void.RGBEditor["RGB"+i] = createText("CENTER", "CENTER", "DEFAULT", 1, (i*23)-0, -40, 2, 1, RGB[i]); error code: UNRECOVERABLE ERROR: ^1SCRIPT ERROR: Preprocessor...
  20. JayCoder

    Request I Need Help BO3 Controller

    so my gsc menu works but, when i wanna use my xbox one controller to open the menu it bugs out, and quits bo3? Keep in mind i can use keyboard & mouse just fine, but if i atempe to open menu with xbox one controller it quits the game Here A Video
Top