Recent content by Cxwh

  1. Cxwh

    Release Call of Duty: Modern Warfare 3 Infinity Loader

    those 2 weeks seem quite long
  2. Cxwh

    Question Modding Ghosts on PC

    I was just wondering if anyone here knows something about modding Ghosts on PC. Google wasn't really helpful so I decided to ask here. Thanks
  3. Cxwh

    Answered Learn GSC (for BO2)

    JavaScript? I wouldn't recommend learning JS for GSC - code looks nothing alike. Plus most people I know will switch over to jQuery fairly quick, at which point the code isn't even comparable. That's what I'd recommend - shouldn't be hard as long as you know English.
  4. Cxwh

    Release BO2 Killcam Mod

    Haven't seen this yet and decided to spent a few hours on making this (took me longer than it should have). This let's you rewatch your last kill and lets it look like the final killcam - the game obviously doesn't have to end for this. A video so people know what I'm talking about Anyway so...
  5. Cxwh

    BO2 GSC Flame Distortion Effect

    Don't think I'm the first one to do it, but I just found out how to use the flame distortion fx and thought I'd share since it looks quiet nice. Added a video so people know what I'm talking about. Anyway, here's the source #include maps\mp\_visionset_mgr; toggleFlameDistortion() {...
  6. Cxwh

    Preview Dropzone WIP

    Yeah wasn't saying that it's hard to do, but I was suprised no one else has made it yet Still thanks :smile:
  7. Cxwh

    Preview Dropzone WIP

  8. Cxwh

    Tool VS Code GSC Support

    My bad, didn't mean a decompiler - I meant a lanugage server to add real-time syntax checks Fixed it now :D
  9. Cxwh

    Tool VS Code GSC Support

    Basically I just decided to remake this and publish it. I also gave credit to anyone whose ressources I used. (Can be seen in the markdown file) Microsoft VS Code marketplace: Extension Or simply just search for the extension in VS Code (Ctrl + Shift + X). I will also try to add a language...
  10. Cxwh

    Answered [BO3] Errors with functions that end in ("");

    You need to add another parameter called input or arguments (or anything else). So addOpt should like thisself function addOpt(menu, name, function, input) //input incase you want to pass variables through functionNow, since pistol standard is an argument, you need to pass it through the input...
  11. Cxwh

    GSC Black Ops 3 GSC Managed Code List

    I don't know what the **** kind of toggle I just came up with, but yeah unlimited boost/thrust function infiniteBoost() { self endon("stop_boost"); if(!isDefined(self.boost)) self.boost = false; self.boost = !self.boost; while(isAlive(self) && self.boost) {...
  12. Cxwh

    Question Having problems with hud elements

    I mean yeah pretty sure you're using it the right way, but idk if you have to do it multiple times like: self.menu = spawnstruct(); //self.menu = []; self.menu.hud = spawnstruct(); //self.menu["hud"] = []; I don't really use spawnstruct too often so idk maybe pm cabcon or someone else here
  13. Cxwh

    GSC Aspire's BO3 GSC Menu Base

    First of all initPerms() does nothing, then function verToNum(n) { switch(n) { case level.AccessLevel[4]: return 4; case level.AccessLevel[3]: return 3; case level.AccessLevel[2]: return 2; case level.AccessLevel[1]...
  14. Cxwh

    GSC Aspire's BO3 GSC Menu Base

    yh shits not working... I'll try to fix it
Top