UGX-Mods Login

or login with an authentication provider below
Sign In with Google
Sign In with Twitter
Sign In with Discord
Sign In with Steam
Sign In with Facebook
Sign In with Twitch

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - lilrifa

Maybe it has to do with OpenMenu() and CloseMenu() function names. iirc, those were the names of the functions you would call to open a .menu file. That's probably what's causing the crash.
7 years ago
Its not bad, but definitely not what old Metallica was
I still think it beats Load and Reload, save for a few tracks.
8 years ago
I would set it up as a projectile weapon, and write the script revolving around that concept.
8 years ago
Progress :)

(Image removed from quote.)

Oh fuck, I forgot I made that HUD. It looks great in-game!
8 years ago
Maybe BO1 Reflex has different UVs
8 years ago
Estimated Release: Tomorrow Evening at 5:30PM whatever fucking timezone I'm in.

GMT: -0;+0
8 years ago
I mean, it's a whole album, but still.
8 years ago
Recently picked up Alkaline Trio jams
8 years ago
Nobody is just going to write up the script for you. You have to put some effort into it, otherwise you'll never learn. Read other scripts Treyarch has written for the methods I've already described. You should learn a lot just from reading.
8 years ago
I'm not gonna spoon-feed this.

Code Snippet
Plaintext
// Make use of the SetMoveSpeedScale() function to slow down the player
// Do this when in a trigger radius or in a certain predefined area
// Once they are no longer touching the trigger or are no longer in the area, reset the move speed scale to what it was prior to entering.

By doing that, you should have the core functionality of the mud present.
8 years ago
I have no idea what you're talking about, do explain.
I think he's referring to g_spawn
8 years ago
Well the prob is that most are 150, some are 500, some are 230. To do it right I prob should have one for each, but that one that I'm using kind of works for all, just with the gun unfortunately.
You would need to have an anim for each one. Tbh, I'm surprised Treyarch didn't make looping fall anims and jump in/jump out. It would be easier to manipulate if it were that way.
8 years ago
I tried to make a mod for Shangri La and added a few weapons and Working Hellhounds but comes up with these http://steamcommunity.com/sharedfiles/filedetails/?id=670210104

I get this when I load too many fxs through script - remove some level._effect["fx"] declarations.
8 years ago
Code Snippet
Plaintext
players[2] giveWeapon)"weapon3");

The game simply ignores it as if it doesn't exist or something. I've tried to fix it myself by adding a few things, but always end up with bad syntax's.

Should be
Code Snippet
Plaintext
players = getplayers();
for(wow=0;i<players.size;wow+=0) {
   players[wow] giveweapon("thundergun_zm");
   players[wow] iprintln("The gods have given you a Thundergun");
   wow+=1;
}

You had a backwards parenthesis. That's why it broke.
Sorry if I was late. I was sleeping.
8 years ago
Loading ...