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 - StupidEdits

How did you create your map? Did you use the launcher or a script placer?

I think he's referring to tuts mentioning to find your MAPNAME.gsc.

When people want you to find your mapname.gsc they're talking about the name of your mod.gsc Not an actual file called mapname.gsc

Ex. If your mod name is "cheetos", replace mapname with cheetos. So instead of looking for mapname.gsc, you're looking for cheetos.gsc
6 years ago
I imagine he “wants” it on touch, to say where the person is

Ah, not sure. I took it as he wanted it to act as a button since the hintstring says "use me".
6 years ago
Use a trigger_use instead, also if you want it to repeat the message whenever they use the trigger try something like this

Code Snippet
Plaintext
area_text()
{
        self endon("disconnect");
self endon("death");

trigger = getent("area_trigger","targetname");
trigger SetCursorHint("HINT_NOICON");
trigger SetHintString("Use me");

for(;;)
{
trigger waittill("trigger");
 
IPrintLn("Message message message message");
wait .1;
}
}
6 years ago
Maybe this could work
Code Snippet
Plaintext
badPlace_cylinder( <name>, <duration>, <origin>, <radius>, <height>, <team> );
6 years ago
If you want to add FXs to your map you're going to have to do it manually.
Here's a tut for UGX's EasyFX https://confluence.ugx-mods.com/plugins/servlet/mobile?contentId=1146958#content/view/1146958
6 years ago
Nice tutorial, will definitely keep this in mind later on  :)
6 years ago
But when I played a version of Der Riese that had upgraded graphics, the same glitch happened on both.  Wouldnt using a second map as reference actually leave room for certain areas or items to not be fully scaled to the original anyway?  For example, you know the mod that adds perk machines to Nacht and modern weapons?  If you load the mod, you go to the menu like you do without mods, and you start the map that way, there's no way they used the original map as reference because the mod doesn't even use a seperate map, only the stock one.  Maybe I was a little confused.
Is there any site online that has a .map made for the base maps?

Remakes are made entirely from scratch. It's not possible to get a .map file from a compiled level, but you can create a mod and add on to pre-existing maps. Personally don't know how, but I'm sure you would be able to find something if you look around.
6 years ago
Well, how does the maps one plays have all of the information on how a level looks?
And how did someone make a remake of Nacht if one can't get the map files?

They look at the map as reference and remake it in radiant lol.
6 years ago
It's not possible to get the .map file of a map.
6 years ago
You're probably just skipping past it if you're able to see it in asset viewer. What you can do though is while you're viewing models in asset viewer, you can ctrl + c on the model name and paste the name of the model within radiant while you're browsing for models or as a kvp.
6 years ago
Compile your MAPNAME_patch

https://gyazo.com/50a3cced277024a6aa1da3f48ca40b0d" width="724
6 years ago
You can change the direction of the sunlight in Radiant by going to Edit > Sun Info. Make sure you have sunlight preview enabled under View > Light Preview > Preview Sun as well, or you won't be able to see the changes / difference while editing the direction.

Also make sure you have everything properly setup for your map lighting/shadow wise:
wiki.modsrepository.com/index.php?title=Call_of_Duty_5:_Skybox
http://wiki.modsrepository.com/index.php?title=Call_of_Duty_4:_Gridfile
http://wiki.modsrepository.com/index.php?title=Call_of_Duty_4:_Reflection_Probes

As for primary lights not working I don't remember exactly, what are your settings for the lights not working.
6 years ago
Since you're using Harry's perks this post looks like a similar issue to yours - https://www.ugx-mods.com/forum/help-desk/10/pack-a-punch-and-weapon-issue/11879/

And the only other timed gameplay script I've seen released is by Tom and in the UGX mod. I'm guessing that's the one you looked at as well.
6 years ago
Loading ...