Garry's Mod

Garry's Mod

Map Prompts - Map-based text prompts system
Showing 21-27 of 27 entries
< 1  2  >
Update: 28 Jun, 2022 @ 2:24am

-Added color support for real this time

Update: 28 Jun, 2022 @ 2:17am

-Added very basic custom color and font support, extension packs will be updated shortly

Update: 27 Jun, 2022 @ 11:44pm

-I done goofed the markposition system

Update: 27 Jun, 2022 @ 11:26pm

-Fixed font errors on multiplayer servers

Update: 27 Jun, 2022 @ 10:55pm

-Improved the MarkPosition feature, read below

There are three commands:

MarkPosition1
MarkPosition2
CreatePosition

MarkPosition1 and 2 will mark the XYZ coordinates of the position you are looking at (e.g The corner of a building. Or a prop, if there is no corner.)

Use one of each at a corner to create a box. This box will be used for the custom location feature.

Then, once both positions are marked, use CreatePosition.

This will print three lines of code in the console, representing the box you've just created. It is automatically formatted, so you can simply just paste the code into the .lua file.

It should look like this:

local CustomSpotX1 = math.Clamp(XPos, -3264, 1472)
local CustomSpotY1 = math.Clamp(YPos, -1215, 1408)
local CustomSpotZ1 = math.Clamp(ZPos, -11136, -11007)

Update: 23 Jun, 2022 @ 11:55pm

-First spawn/Respawn functionality is restored

'Map prompt appears on all spawns' means the prompt will ALWAYS appear, regardless of first spawn option.

If only first spawn option is enabled, spawn prompt will only occur once.

If neither are enabled, the spawn prompt will never appear.

-Added new option for enabling/disabling custom location prompts

Update: 23 Jun, 2022 @ 2:27pm

Initial addon creation.