Goliath Posted March 14, 2018 Report Share Posted March 14, 2018 Name In-game: ISB Junior Agent Proctor Teamspeak Name: Proctor Playtime on the server: To be confirmed (away from Pc rn, will update by the end of the day :)) Age: 17 Programming languages you know: Lua HTML JavaScript CSS (basic level) PHP (basic level) Why do you want to become a Low Grade Dev?: I believe that one of the best ways that I could help the server is by becoming a developer. I have a large amount of experience creating gmod content, as well as configuring and setting up servers, addons and gamemodes. I have had a successful partnership (pinefall development) with @pinejack on gmodstore for a while, where we focus on creating custom content for, setting up and configuring all sorts of RP servers, especially SWRP servers. I also believe that this would be a great opportunity to work with some high level developers and expand my skills. Have you made any other scripts or content I should know about?: There is some, but I think that a relevant example would be a lot more useful. (I may update this with more examples in the future) Command to allow RG and SG switch between their armor and robes (can also be easily customized, add more swaps): -- Table of models that can swap between each other local swaps =[ [“model1”,”model2”], ] -- Adds the main console command concommand.Add(“swap”,function(ply)) local model = ply:GetModel For k, v in pairs (swaps) do if table.HasValue(swaps,model) then if v[0] == model then ply:SetModel(v[1]) else ply:SetModel(v[0]) end break end end end -- Adds a chat command that can call the console command hook.add(“PlayerSay”,”SwapChat”,function(ply,str) if string.lower(str) == “!swap” then ply:ConCommand(“swap”) return “” end end) Link to comment Share on other sites More sharing options...
Emerald Posted March 14, 2018 Report Share Posted March 14, 2018 +1 Link to comment Share on other sites More sharing options...
Twinkie Posted March 14, 2018 Report Share Posted March 14, 2018 +1 Link to comment Share on other sites More sharing options...
pinejack Posted March 14, 2018 Report Share Posted March 14, 2018 +1 Link to comment Share on other sites More sharing options...
SCHEFF Posted March 14, 2018 Report Share Posted March 14, 2018 +1 1 Link to comment Share on other sites More sharing options...
Ramirez Posted March 14, 2018 Report Share Posted March 14, 2018 Would be a good addition +1 Link to comment Share on other sites More sharing options...
Stryker Posted March 14, 2018 Report Share Posted March 14, 2018 5 hours ago, goliath said: -- Table of models that can swap between each other local swaps =[ [“model1”,”model2”], ] -- Adds the main console command concommand.Add(“swap”,function(ply)) local model = ply:GetModel For k, v in pairs (swaps) do if table.HasValue(swaps,model) then if v[0] == model then ply:SetModel(v[1]) else ply:SetModel(v[0]) end break end end end -- Adds a chat command that can call the console command hook.add(“PlayerSay”,”SwapChat”,function(ply,str) if string.lower(str) == “!swap” then ply:ConCommand(“swap”) return “” end end) that won't work, I'll let you figure it out. Link to comment Share on other sites More sharing options...
Martibo Posted March 14, 2018 Report Share Posted March 14, 2018 OOFT THATS GONNA BE A LUA ERROR local model = ply:GetModel ACCEPTED FOR INTERVIEW PHASE // YOU'LL BE CONTACTED SOON 4 1 Link to comment Share on other sites More sharing options...
Goliath Posted March 14, 2018 Author Report Share Posted March 14, 2018 15 minutes ago, |Stryker| said: that won't work, I'll let you figure it out. Fair enough, written on this: @Martibo Will be on TS soon :). 1 Link to comment Share on other sites More sharing options...
Anthony Posted March 14, 2018 Report Share Posted March 14, 2018 IDK why i like that photo so much... Link to comment Share on other sites More sharing options...
Goliath Posted March 14, 2018 Author Report Share Posted March 14, 2018 10 minutes ago, Anthony said: IDK why i like that photo so much... I guess I am just objectively great. (That's a lie, idk why aswell) 1 Link to comment Share on other sites More sharing options...
[IG] Tackxo Posted March 14, 2018 Report Share Posted March 14, 2018 1 hour ago, goliath said: Fair enough, written on this: @Martibo Will be on TS soon :). you got some long ass hands my man Link to comment Share on other sites More sharing options...
Martibo Posted March 17, 2018 Report Share Posted March 17, 2018 Accepted Link to comment Share on other sites More sharing options...
Recommended Posts