[QUOTE=StonedPenguin;46120105]Your code is soo messy.
[/QUOTE]
Was also rushed, and done very quickly
[QUOTE=Eloquence;46110370][B]Summary of all Addons in this Thread[/B]
[url]https://docs.google.com/document/d/17EwwglmGMz6TVsmYlkOhZYRGTvHotWGy8f2Xlx8NeQc/edit?usp=sharing[/url]
It took me a while and was easier to format in Google Docs so enjoy XD[/QUOTE]
Badass! I will update the OP later today and link the Google Docs in case you ever wanted to update that.
[editline]1st October 2014[/editline]
[QUOTE=code_gs;46110641]Exho sure gets banned a lot.[/QUOTE]
That I do... Tread lightly though, rumor is even mentioning a "ban" can result in severe punishment as it falls under "Acknowledging the Existence of Moderators"
[QUOTE=Exho;46121882]Badass! I will update the OP later today and link the Google Docs in case you ever wanted to update that.
[editline]1st October 2014[/editline]
That I do... Tread lightly though, rumor is even mentioning a "[B][U]ban[/U][/B]" can result in severe punishment as it falls under "Acknowledging the Existence of Moderators"[/QUOTE]
***ned
Anyways, welcome back Exho, taker of ben.
I didn't know that you can't report and explain to users where they should post...It's [B]back-seat moderation[/B],i guess (And actually, these words doesn't make sense in my language , so i don't know why i got banned)
[QUOTE=gonzalolog;46123039]I didn't know that you can't report and explain to users where they should post...It's [B]back-seat moderation[/B],i guess (And actually, these words doesn't make sense in my language , so i don't know why i got banned)[/QUOTE]
Backseat as in a "back seat driver" which is a person who tells you how to drive while they are just sitting in the back. Its fairly annoying in driving context but silly on this forum, a couple mods need to chill
Well I attempted to clone this addon ([url]https://scriptfodder.com/scripts/view/300[/url]) but hilariously failed. I used the DoPlayerDeath hook to force drop the weapon and set a Networked Bool on it and throw it in a table and then clientside looped through the table and tried to draw 3d2d text over it. For whatever reason the Networked bool doesnt do anything (I discovered it using traces and printing the bool). So I give up
[url]http://pastebin.com/1ZHtHqPH[/url]
I'm going to look for something else to clone
[QUOTE=Exho;46125406]Well I attempted to clone this addon ([url]https://scriptfodder.com/scripts/view/300[/url]) but hilariously failed. I used the DoPlayerDeath hook to force drop the weapon and set a Networked Bool on it and throw it in a table and then clientside looped through the table and tried to draw 3d2d text over it. For whatever reason the Networked bool doesnt do anything (I discovered it using traces and printing the bool). So I give up
[url]http://pastebin.com/1ZHtHqPH[/url]
I'm going to look for something else to clone[/QUOTE]
Wouldnt you be able to just look how DarkRP does it? Or am i just 'dumb'
[QUOTE=helplesskitty;46112752]original -- [url]https://scriptfodder.com/scripts/view/185[/url]
free/clone -- [url]https://mega.co.nz/#F!pMEDWaYb!Q8EZUKVLNQ4RqHUbcw-0TA[/url]
NEXT -- [url]http://coderhire.com/scripts/view/1269[/url][/QUOTE]
Omg tytyty, as much as I hate DarkRP that idiot doesn't deserve a cent.
Weapon weight of the Advanced TTT Done -- Will do the sprint tomorrow
[CODE]--[[----------------------------------------------
# TTT MoveMod
- Allows Sprinting -- Havent dont this yet.
- Weapon Weight Speed Modifications
----------------------------------------------]]--
-- 1 = The Standard ttt walk speed. The table below is multipliers.
-- You would edit these to set how much faster or slower each weapon is.
local WeaponTable = {}
WeaponTable["weapon_zm_pistol"] = 1.2 -- Pistol
WeaponTable["weapon_ttt_glock"] = 1.2 -- Glock
WeaponTable["weapon_zm_revolver"] = 1 -- Deagle
WeaponTable["weapon_zm_rifle"] = 0.8 -- Sniper Rifle
WeaponTable["weapon_zm_mac10"] = 0.9 -- Mac 10
WeaponTable["weapon_ttt_m16"] = 0.8 -- M16
WeaponTable["weapon_zm_shotgun"] = 0.8 -- Shotgun
WeaponTable["weapon_zm_sledge"] = 0.8 -- M249
-- You would add more weapons in like this
-- WeaponTable["weapon_classname"] = The multiplier of the normal player speed.
-- TTT has a hook for this.
hook.Add( "TTTPlayerSpeed", "MessWithStuff", function( ply, slowed )
local activewep = ply:GetActiveWeapon()
if IsValid( activewep ) then
local wep = activewep:GetClass()
if WeaponTable[wep] then
return WeaponTable[wep]
end
end
return 1.2
end)[/CODE]
Chuck that in lua/autorun/server and give it a .lua file name.
[QUOTE=Steeze;46128527]Omg tytyty, as much as I hate DarkRP that idiot doesn't deserve a cent.
[/QUOTE]
-snip-
[QUOTE=helplesskitty;46128874]He is the guy that made it..... so he is the idiot..... ?[/QUOTE]
Post fixed. I quoted the wrong one. Hurry up with the Shard Remake XD.
[QUOTE=Steeze;46128898]Post fixed. I quoted the wrong one. Hurry up with the Shard Remake XD.[/QUOTE]
I did it?
[QUOTE=helplesskitty;46113476]original -- [url]http://coderhire.com/scripts/view/1269[/url]
free/clone -- [url]https://mega.co.nz/#F!QcM2gLDa!i75ijmA3QXS7hTlzQ1IF0A[/url]
(took me 2 hours)
Screenshot -- [url]http://cloud-4.steampowered.com/ugc/34098854722801315/E38BF0BB137230D83E4BE54D137C16CF696587D4/[/url]
Screenshot 2 -- [url]http://cloud-4.steampowered.com/ugc/43106053968775898/4476168DD2EE8C32F5C7DD01556A5670F115C9F1/[/url]
Screenshots are different screen sizes btw.[/QUOTE]
(Steeze makes me cry with his impatience).... :'(
[QUOTE=helplesskitty;46129001]I did it?[/QUOTE]
Hurry up and rate me late then. :P
[QUOTE=Exho;46125406]Well I attempted to clone this addon ([url]https://scriptfodder.com/scripts/view/300[/url]) but hilariously failed. I used the DoPlayerDeath hook to force drop the weapon and set a Networked Bool on it and throw it in a table and then clientside looped through the table and tried to draw 3d2d text over it. For whatever reason the Networked bool doesnt do anything (I discovered it using traces and printing the bool). So I give up
[url]http://pastebin.com/1ZHtHqPH[/url]
I'm going to look for something else to clone[/QUOTE]
I would but I'm busy, it wouldn't be hard though, if no one has done it by the 4th I'll do it.
[QUOTE=Steeze;46128527] Stuff [/quote]
Also you need to throw in a modifier for if slowed == true because Slowed is used when zooming and that might be a bit wonky if you have a heavy weapon and zoom in.
[QUOTE=Exho;46131400]Also you need to throw in a modifier for if slowed == true because Slowed is used when zooming and that might be a bit wonky if you have a heavy weapon and zoom in.[/QUOTE]
You're right. I haven't used the TTT base in ages, forgot how much of a piece of shit it was. Will sort.
[QUOTE=Steeze;46134651]You're right. I haven't used the TTT base in ages, forgot how much of a piece of shit it was. Will sort.[/QUOTE]
I made a Weapon Weight addon too lol and made sure to do that. I collaborated on it with the owner of the clan I was once in and he didnt want it released, so it never saw the light of day
Sleek HUD, I have seen this shit on soo many servers and the guy is selling it for 5 Dollars!
Didn't take me long to make it and since I did it in such a rush, there may be some bugs but people should be able to fix a simple HUD bug them self.
Sleek HUD Original: [url]https://scriptfodder.com/scripts/view/315[/url]
SleeK HUD Clone: [URL="http://www.mediafire.com/download/nx77p6a4bywex8d/cl_hudreplacement.lua"]http://www.mediafire.com/download/nx77p6a4bywex8d/cl_hudreplacement.lua[/URL]
[IMG]https://i.imgur.com/vDN14mn.png[/IMG]
In case, for some reason, you don't know how to install it, place in garrysmod\addons\darkrpmodification-master\lua\darkrp_modules\hudreplacement
Long time no see Ex hoe.
Nick! Never thought I would see you anywhere but TG forums... And I didnt know you knew Lua either lol.
Good work on the HUD!
[QUOTE=Nick78111;46137090]Sleek HUD, I have seen this shit on soo many servers and the guy is selling it for 5 Dollars!
Didn't take me long to make it and since I did it in such a rush, there may be some bugs but people should be able to fix a simple HUD bug them self.
Sleek HUD Original: [url]https://scriptfodder.com/scripts/view/315[/url]
SleeK HUD Clone: [URL="http://www.mediafire.com/download/nx77p6a4bywex8d/cl_hudreplacement.lua"]http://www.mediafire.com/download/nx77p6a4bywex8d/cl_hudreplacement.lua[/URL]
[IMG]https://i.imgur.com/vDN14mn.png[/IMG]
In case, for some reason, you don't know how to install it, place in garrysmod\addons\darkrpmodification-master\lua\darkrp_modules\hudreplacement
Long time no see Ex hoe.[/QUOTE]
Finally, I was wondering when this was going to be copied!, Well Done.
PLZ dont use this script as code is messy, works fine but code is SUUUCHH an eyesore.
Screenshot(mine) : [url]http://cloud-4.steampowered.com/ugc/43106690147344654/85528F2610C2AFE55BE13AC3881930CF913A4601/[/url]
Download(mine) : [url]https://mega.co.nz/#F!hBMiSYYT!48hcHfwG5ciGX1KmUVLJ3Q[/url]
Original(shield your eyes from the awesome) : [url]https://scriptfodder.com/scripts/view/322[/url]
#soznotsoz
[QUOTE=helplesskitty;46138505]So after seeing this, and realising it is the PINNACLE of GLua coding, i first, shit myself in awe and admiration, then proceeded to cry realising that every addon made before this wasn't "Proffesional" enough.
The likes of ARCBank, DeagleLogs, LeyAC and many more addons, do not measure up to this one in terms of coding.
So after my small depression attack of how insignificant my coding skills were, i attempted a pathetic attempt at recreating this piece of god given VGUI.
Screenshot(mine) : [url]http://cloud-4.steampowered.com/ugc/43106690147344654/85528F2610C2AFE55BE13AC3881930CF913A4601/[/url]
Download(mine) : [url]https://mega.co.nz/#F!hBMiSYYT!48hcHfwG5ciGX1KmUVLJ3Q[/url]
Original(shield your eyes from the awesome) : [url]https://scriptfodder.com/scripts/view/322[/url]
( shouldn't there be a 5 second script rule on ScriptFodder......)[/QUOTE]
The angle looks odd; I'd recommend changing it to a 45 by setting the ( x = x - h ) on the tilt part.
See: [url]https://dl.dropboxusercontent.com/u/26074909/tutoring/poly/tilted_rectangle_poly_as_health_meter.lua.html[/url]
[url]https://dl.dropboxusercontent.com/u/26074909/tutoring/poly/another_tilted_health_bar.lua.html[/url]
And I may as well post something... I made a voice visualizer a LONG time ago.... My method for it is by redirection and injection...
This might help some newer Lua coders learn how to add functionality to existing structures.
[url]https://dl.dropboxusercontent.com/u/26074909/tutoring/_zipped_code/acecool_voice_graph.rar[/url]
And another, much simpler / less involved example of the same injection method; both support auto-refresh.
[url]https://dl.dropboxusercontent.com/u/26074909/tutoring/vgui/dcollapsiblecategory_ontoggle_callback.lua.html[/url] -- This one should be officially in GMod now though, but it still serves as a useful example.
[QUOTE=Acecool;46138538]The angle looks odd; I'd recommend changing it to a 45 by setting the ( x = x - h ) on the tilt part.
[/QUOTE]
Relatively easy for people to change it themselves, it is after all a free release.
original: [url]http://coderhire.com/scripts/view/660[/url] [[URL="http://imgur.com/SQLwfC7"]Imgur Mirror[/URL]]
original (now free released): [url]https://github.com/YVL-/Custom-ULX-Commands[/url]
[QUOTE=helplesskitty;46138505]So after seeing this, and realising it is the PINNACLE of GLua coding, i first, shit myself in awe and admiration, then proceeded to cry realising that every addon made before this wasn't "Proffesional" enough.
The likes of ARCBank, DeagleLogs, LeyAC and many more addons, do not measure up to this one in terms of coding.
So after my small depression attack of how insignificant my coding skills were, i attempted a pathetic attempt at recreating this piece of god given VGUI.
Screenshot(mine) : [url]http://cloud-4.steampowered.com/ugc/43106690147344654/85528F2610C2AFE55BE13AC3881930CF913A4601/[/url]
Download(mine) : [url]https://mega.co.nz/#F!hBMiSYYT!48hcHfwG5ciGX1KmUVLJ3Q[/url]
Original(shield your eyes from the awesome) : [url]https://scriptfodder.com/scripts/view/322[/url]
( shouldn't there be a 5 second script rule on ScriptFodder......)[/QUOTE]
Are you on drugs? :v:
You don't know how to use tabbing
You don't know how to do spacing
You create multiple variables for the same thing
You create variables that you never use
You use else's that do nothing
[code]
if ( IsValid( LocalPlayer() ) ) then
hudPaint()
Agenda()
--DrawZombieInfo()
--DrawEntityDisplay()
else
end
[/code]
[code]
if LocalPlayer():IsTyping() then
return
else
[/code]
and these were all found within [B] 30 seconds[/B].
You really shouldn't claim your addon, or well HUD is the "pinnacle of glua coding" when it looks like it's coded by someone who just started coding lua.
[QUOTE=Leystryku;46147117]Are you on drugs? :v:
You don't know how to use tabbing
You don't know how to do spacing
You create multiple variables for the same thing
You create variables that you never use
You use else's that do nothing
[code]
if ( IsValid( LocalPlayer() ) ) then
hudPaint()
Agenda()
--DrawZombieInfo()
--DrawEntityDisplay()
else
end
[/code]
[code]
if LocalPlayer():IsTyping() then
return
else
[/code]
and these were all found within [B] 30 seconds[/B].
You really shouldn't claim your addon, or well HUD is the "pinnacle of glua coding" when it looks like it's coded by someone who just started coding lua.[/QUOTE]
He was calling the ScriptFodder version a 'pinnacle of glua coding', not his own.
And I'm pretty sure spacing and tabulation are preference, just like semi-colons ( at least in Lua ).
At least he's doing something for the community.
[QUOTE=HumbleTH;46147167]He was calling the ScriptFodder version a 'pinnacle of glua coding', not his own.
And I'm pretty sure spacing and tabulation are preference, just like semi-colons ( at least in Lua ).
At least he's doing something for the community.[/QUOTE]
Even if he's doing something for the community he's also harassing lots of coders.
Spacing and tabulation are preference, but there also are kind of rules, like not randomly using a space instead of tab - consistency.
Even if he was talking about the ScriptFodder version ( which I really doubt ) he claims every single addon before some HUD "isn't professional enough".
-snip who cares-
[QUOTE=helplesskitty;46147328]
Was just trying to release a FREE version of a HUD that was simple and easy to replicate, so some skid, doesn't make money off of it.[/QUOTE]
I think there's a difference between calling people skids (when the code they made is neater than yours) and the fact that designing such a 'simple and easy replicatable' HUD can take hours til you're happy with a design. Do me a favour and don't bash the people who actually put thought into their creations.
I thought this was supposed to be a cloning thread not 'let's make drama and call everybody a shit coder'. Everybody has their own standard. Look at Acecool, he has his own standard and gets the shit ripped into him all the time about it.
[QUOTE=helplesskitty;46147328]If you read it PROPERLY, i was referencing the ScriptFodder HUD as the 'pinnacle of Glua' using sarcasm(google it if you don't know what that is)
I made the code in under 10 minutes, not worrying about what is being used.
[CODE]if LocalPlayer():IsTyping() then
return
else[/CODE]
this code, if you even bothered to load up the HUD, removes it when the player opens a chatbox so it doesn't interfere.
Sorry, if a FREE, and really REALLY simply made DARKRP HUD(if this was an anti cheat or FUCKING ARCBank, i could understand you getting mad.) wasn't to your standard of coding.
Was just trying to release a FREE version of a HUD that was simple and easy to replicate, so some skid, doesn't make money off of it.[/QUOTE]
I'm kinda sick of people using the "I'm releasing it for free so who cares if it's shit".
Yes, you are releasing something for free, [B]congratu-fucking-lations[/B].
That doesn't give you an excuse however to write heaps shitty code, with horrible coding standards, I couldn't even call some of what I see a coding standard. I thought the point here was to say "Hey, look at this guy making a super simple addon, I'm going to be nice and make it for others so they don't have to buy it". Not, "Hey, this guy made a script that I could probably do 80% of and not waste any of my time doing, I will make a shitty version of the script and people will love me because I released a script for free and I will also be sure to rant about how stupid it is that the original maker is charging for it so I am a hero."
I honestly don't care that you are releasing it for free, I care that the addon is of a certain standard.
It's the exact same if someone released something in the Gamemodes and Addons released. If their code is shit, people criticize them. Why does it have to be different here? Because you are making something paid free? It's not an excuse.
[sp] My opinion, anyway. [/sp]
[QUOTE=AnonTakesOver;46147391]I'm kinda sick of people using the "I'm releasing it for free so who cares if it's shit".
Yes, you are releasing something for free, [B]congratu-fucking-lations[/B].
That doesn't give you an excuse however to write heaps shitty code, with horrible coding standards, I couldn't even call some of what I see a coding standard. I thought the point here was to say "Hey, look at this guy making a super simple addon, I'm going to be nice and make it for others so they don't have to buy it". Not, "Hey, this guy made a script that I could probably do 80% of and not waste any of my time doing, I will make a shitty version of the script and people will love me because I released a script for free and I will also be sure to rant about how stupid it his that the original maker is charging for it so I am a hero."
I honestly don't care that you are releasing it for free, I care that the addon is of a certain standard.
[sp] My opinion, anyway. [/sp][/QUOTE]
You're right.
[URL="http://facepunch.com/showthread.php?t=1426998&p=46116540&viewfull=1#post46116540"]Classic Example.[/URL]
Sorry, you need to Log In to post a reply to this thread.