• Coderhire Addon Cloning Thread
    568 replies, posted
[url]http://facepunch.com/showthread.php?t=1415861[/url] [img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img][img]http://www.facepunch.com/fp/ratings/box.png[/img]
[QUOTE=Author.;46386746][url]http://facepunch.com/showthread.php?t=1415861[/url] [/QUOTE] OH, Icejjfish was the maker. I was gonna say... XD
I'd help with a site.
[url]http://facepunch.com/showthread.php?t=1434767&p=46388680#post46388680[/url] New thread for the website. Help would be appreciated I might have to make a thanks.txt :P In all seriousness though if you are going to help I would probably put a contributor tab in the footer and have everyone (including myself) in it. My goal isn't to put myself into the lime light, it is to put the unsung heroes of the GMod Coding Community into it. I guess what I am trying to say is that this won't be a project where you get your name out there (at least that is my goal).
Working on cloning this: [url]https://scriptfodder.net/scripts/view/469[/url]
[QUOTE=ilovereno99;46434711]Working on cloning this: [url]https://scriptfodder.net/scripts/view/469[/url][/QUOTE] I figure this would help [url]http://facepunch.com/showthread.php?t=1430197[/url]
Tell me something to clone.
[url]https://scriptfodder.net/scripts/view/422[/url] <-- Copy the actual scoreboard she has in the photo
[QUOTE=BigBadWilly;46435432][url]https://scriptfodder.net/scripts/view/422[/url] <-- Copy the actual scoreboard she has in the photo[/QUOTE] u mean this [url]https://scriptfodder.net/scripts/view/153[/url]
[QUOTE=NiandraLades;46435453]u mean this [url]https://scriptfodder.net/scripts/view/153[/url][/QUOTE] Thank you Nia, would love for this to be cloned
I cloned [URL="https://scriptfodder.net/scripts/view/375"]spkyr's Traitor Inactivity Timer[/URL]. Screenies: •••Countdown Timer: sorry the video broke, i have to rerecord stuff •••Config Options: [t]http://i.imgur.com/O1jJ71Y.png[/t] Demo Video: sorry the video broke, i have to rerecord stuff Download: [URL="https://github.com/zerfgog/TTT-Traitor-Inactivity-Timer"]GitHub[/URL]
[url]https://scriptfodder.net/scripts/view/373[/url] anyone? It's too hard I can't figure out how to copy the health station code and make it explode if an innocent uses it
[QUOTE=tommy228;46437873][url]https://scriptfodder.net/scripts/view/373[/url] anyone? It's too hard I can't figure out how to copy the health station code and make it explode if an innocent uses it[/QUOTE] go for it, support for your damagelogs too would be great (spykr's does the same but for his detailed events)
-wow im l8- [editline]8th November 2014[/editline] [QUOTE=tommy228;46437873][url]https://scriptfodder.net/scripts/view/373[/url] anyone? It's too hard I can't figure out how to copy the health station code and make it explode if an innocent uses it[/QUOTE] Spawn regular health station, use this: [url]http://wiki.garrysmod.com/page/GM/PlayerUse[/url] easy.
[QUOTE=AnonTakesOver;46438116]-wow im l8- [editline]8th November 2014[/editline] Spawn regular health station, use this: [url]http://wiki.garrysmod.com/page/GM/PlayerUse[/url] easy.[/QUOTE]Aah you really know what sarcasm is... [sp]See what I did there!!... [/sp]
[QUOTE=ColgateMaster;46438500]Aah you really know what sarcasm is... [sp]See what I did there!!... [/sp][/QUOTE] Oh shit. I'm an idiot... :suicide:
[QUOTE=BigBadWilly;46435432][url]https://scriptfodder.net/scripts/view/422[/url] <-- Copy the actual scoreboard she has in the photo[/QUOTE] I might try that it does look nice :v:
[QUOTE=tommy228;46437873][url]https://scriptfodder.net/scripts/view/373[/url] anyone? It's too hard I can't figure out how to copy the health station code and make it explode if an innocent uses it[/QUOTE] I have something very similar to this that a friend made long ago... Look into the ENT:Use function
Can someone tell me something to clone... I really need to learn more lua.
-snip-
[QUOTE=tommy228;46437873][url]https://scriptfodder.net/scripts/view/373[/url] anyone? It's too hard I can't figure out how to copy the health station code and make it explode if an innocent uses it[/QUOTE] this is how i did mine: [code] function ENT:GiveHealth(ply, max_heal) if self:GetStoredHealth() > 0 then <standard shit> <standard shit> if dmg > 0 then if ply:IsTraitor() then --heals traitors ply:SetHealth(new) end if !ply:IsTraitor() then -- blows those fuckers up <big boom code here along with removal of entity> end <more standard shit> [/code] pastebin link for the entity [URL="http://pastebin.com/0ELFc25s"]here[/URL]
[QUOTE=AJ10017;46439257]this is how i did mine: [code] function ENT:GiveHealth(ply, max_heal) if self:GetStoredHealth() > 0 then <standard shit> <standard shit> if dmg > 0 then if ply:IsTraitor() then --heals traitors ply:SetHealth(new) end if !ply:IsTraitor() then -- blows those fuckers up <big boom code here along with removal of entity> end <more standard shit> [/code] pastebin link for the entity [URL="http://pastebin.com/0ELFc25s"]here[/URL][/QUOTE] [QUOTE=ColgateMaster;46438500]Aah you really know what sarcasm is... [sp]See what I did there!!... [/sp][/QUOTE]
[QUOTE=AJ10017;46439257]this is how i did mine: [code] function ENT:GiveHealth(ply, max_heal) if self:GetStoredHealth() > 0 then <standard shit> <standard shit> if dmg > 0 then if ply:IsTraitor() then --heals traitors ply:SetHealth(new) end if !ply:IsTraitor() then -- blows those fuckers up <big boom code here along with removal of entity> end <more standard shit> [/code] pastebin link for the entity [URL="http://pastebin.com/0ELFc25s"]here[/URL][/QUOTE] why didnt you just do [lua] if ply:IsTraitor() then ply:SetHealth(new) else boom end [/lua] More cleaner :v:
Original: [url]https://scriptfodder.net/scripts/view/484[/url] Clone: [url]http://facepunch.com/showthread.php?t=1436445&p=46474058&viewfull=1#post46474058[/url] currently kinda busy so nothing from me today. But hey, it's something
Seeing as progress on [URL="http://facepunch.com/showthread.php?t=1434767"]gscripts[/URL] seems to be slowed :( I cloned the CoderHire Addon Cloning Thread document. This one is in spreadsheet form with multiple tabs. It also includes free addons from other sources. [url]https://docs.google.com/spreadsheets/d/1J2sKopixdxiLdEE3Pm1tmGYCR3Z28ZhcIrpLpYzs5A0/edit?usp=sharing[/url] Anyone can comment, so you can suggest additions.
Thank you, I almost lost my balls not finding the deathrun HUD. O:
[QUOTE=LJHGreenbolt;46495488]Thank you, I almost [B]lost my balls[/B] not finding the deathrun HUD. O:[/QUOTE] That would've been tragic
-snip im not nice-
*Whistling* [URL="http://ssnservers.com/shitloading.html"][IMG]http://ssnservers.com/images/gitrektm8.png[/IMG][/URL] [url]https://scriptfodder.net/scripts/view/484[/url] --> [url]http://ssnservers.com/shitloading.html[/url] [URL="http://ssnservers.com/disgustico"][IMG]http://ssnservers.com/images/gitrektm82.png[/IMG][/URL] [url]https://scriptfodder.net/scripts/view/502[/url] --> [url]http://ssnservers.com/disgustico[/url] Smooth Load was stolen from an RP community and attempted to be sold. So I remade it. I'll be working to make it downloadable and user friendly tomorrow! Rustico Load was just plain and stupid. The description also stated that [quote]"On every Sunday, I'll donate 20% of the money made from this loading screen to Child Fund International."[/quote] Which I found slightly desperate for sales and pointless since he lowered the price to $2.00 ... So I remade that, too. Again, I'll be working to make both downloadable and more user friendly tomorrow! (By user friendly I mean I timed myself to see which one was more of a "5 minute script", so the code is sloppy as shit.) [B][URL="http://ssnservers.com/dev"]Download Available![/URL][/B]
I honestly find Smooth Load bizarre, like why would anyone want a loading screen where the product name takes up a large portion of the screen?
Sorry, you need to Log In to post a reply to this thread.