Hello! I am searching for a addon/script
Just click at the screenshot and look at the top where it says "Nato Basis" whats that addon/script called ?
[URL="https://steamcommunity.com/sharedfiles/filedetails/?id=933959612"]https://steamcommunity.com/sharedfiles/filedetails/?id=933959612[/URL]
[highlight](User was banned for this post ("Wrong section" - Bengley))[/highlight]
I see, it's some 2d3d type script.
If it's a individual addon, you could try..
-Exit the game.
-Go to "GarrysMod\garrysmod\downloads\server"
-Delete all addons in this directory.
-Join the server.
-Copy "GarrysMod\bin\gmad.exe" to the above directory.
-Drag each .gma file one onto "gmad.exe" to extract it.
-Find the write directory pertaining to this 2d3d addon.
If it's not a separate addon, they may have written it for their gamemode. At the very least you could use StringFinder on this server directory to find the files with 'NATO basis' as content.
Nope that didn work still searching for it
Either way, it's not too difficult to code a directional indicator like that. Have you any experience coding with glua?
None but i need a script that
1. Shows what Waypoint your in
2. A system to take it over like capture the flag also it should be easy config so i can decide if its even allowed to be taken over
What gamemode is it for? The waypoints your referring to aren't apart of the Garrysmod base gamemodes.
So you're wanting to create something similar to Day of Defeat. I can lead you in the "general direction" regarding that compass indicator.
[QUOTE]
// Client code
local LocalPlayer();
// Angle from player position to destination position
local toDir = (fromVec - toVec):Normalize(); // Hopefully I got this around the right way
local toAng = Vector(0, toDir:Angle().y, 0);
local toDeg = toAng.y; // Angle in degrees (I don't think it's radians)
// Play's view angle
local fromDir = ply:EyeAngles();
local fromAng = Vector(0, fromDir:Angle().y, 0);
local fromDeg = fromAng.y;
// Your code for displaying this[/QUOTE]
Not everything is a well written addon unfortunately. Most code people write is monolithic in nature for garrysmod.
Gamemode is based on DarkRP with another name
[editline]15th June 2017[/editline]
Well my Gamemode is suppost to be Axis vs Allies WW2 themed so i want something like conquest just with Ranks and regiments
Sorry, you need to Log In to post a reply to this thread.