I think my next Project will be a clone of [url]http://coderhire.com/scripts/view/448#media[/url] or [url]http://coderhire.com/scripts/view/459#media[/url] since i can't decide which one.
[QUOTE=Tomelyr;45999611]I think my next Project will be a clone of [URL]http://coderhire.com/scripts/view/448#media[/URL] or [URL]http://coderhire.com/scripts/view/459#media[/URL] since i can't decide which one.[/QUOTE]
I don't like the second one at all, but that may just be me. I think you should do the first.
[t]http://i.imgur.com/HCpF2FA.jpg[/t]
some progress, i think i will finish it in the next days. It isn't an 100% clone and it's missing the Quick Admin, Rank and Futuristic Font.
Admin will be added, For Rank there is a better addon from Rejax already released. And i dont like the futuristic font.
[QUOTE=Tomelyr;46004936][t]http://i.imgur.com/HCpF2FA.jpg[/t]
some progress, i think i will finish it in the next days. It isn't an 100% clone and it's missing the Quick Admin, Rank and Futuristic Font.
Admin will be added, For Rank there is a better addon from Rejax already released. And i dont like the futuristic font.[/QUOTE]
I'm normally not one to criticise. But I think the futuristic font was part of what actually made what you are trying copy sell. I hope to see more progress on what you are trying to achieve soon because at the moment it looks disgusting.
The font is kinda ugly imo but it does make the Scoreboard stand out more
[QUOTE=Steeze;46005157]I'm normally not one to criticise. But I think the futuristic font was part of what actually made what you are trying copy sell. I hope to see more progress on what you are trying to achieve soon because at the moment it looks disgusting.[/QUOTE]
I agree. The font on the original didn't look all that great, but it definitely made it stand out more and a tad more unique. It wouldn't be too hard to find another font like it, if you (Tomelyr) don't want to use the one it used.
[url]http://www.mediafire.com/view/srnldqzfeasihx4/playercounter.lua[/url]
Honestly I hate seeing people get ripped off, this was just stupid.
[url]https://scriptfodder.com/scripts/view/182[/url] ( original )
wrote it in like ~15 minutes and thats only because I don't work with the string library that much.
[QUOTE=wisezombiekin;46033271][url]http://www.mediafire.com/view/srnldqzfeasihx4/playercounter.lua[/url]
Honestly I hate seeing people get ripped off, this was just stupid.
[url]https://scriptfodder.com/scripts/view/182[/url] ( original )
wrote it in like ~15 minutes and thats only because I don't work with the string library that much.[/QUOTE]
Dude it's $2.
No one's getting ripped off, it's a simple ass script I wrote for myself and decided to sell for $2.
[QUOTE=actuallytyler;46034831]Dude it's $2.
No one's getting ripped off, it's a simple ass script I wrote for myself and decided to sell for $2.[/QUOTE]
2$....or free.. A hard choice good sir!
(free is always better if you're getting the same thing, [B]by the way[/B])
[QUOTE=wisezombiekin;46033271]wrote it in like ~15 minutes[/QUOTE]
Exactly, so why does it matter to you so much? Why is he obligated to pay for your script when he can write it in the same amount of time?
[QUOTE=wisezombiekin;46033271][url]http://www.mediafire.com/view/srnldqzfeasihx4/playercounter.lua[/url]
Honestly I hate seeing people get ripped off, this was just stupid.
[url]https://scriptfodder.com/scripts/view/182[/url] ( original )
wrote it in like ~15 minutes and thats only because I don't work with the string library that much.[/QUOTE]
Good lord. You have a global function called 'the' which is only called once.
In fact, every single one of your functions is global, which is blowing my mind.
[CODE]
if not file.Exists( "uniquejoins.txt", "DATA" ) then
file.Write( "uniquejoins.txt", 0 )
end
hook.Add( "PlayerInitialSpawn", function( ply )
if not ply:GetPData( "Prevjoin" ) then
ply:SetPData( "Prevjoin", true )
file.Write( "uniquejoins.txt", file.Read( "uniquejoins.txt", "DATA" ) + 1 )
end
end )
hook.Add( "PlayerSay", "!stats", function ( ply, txt )
if txt == "!stats" then
ply:ChatPrint( "There have been " .. file.Read( "uniquejoins.txt", "DATA" ) .. " unique players on this server." )
end
end )
[/CODE]
just do this, ok?
[QUOTE=CallMePyro;46035698]Good lord. You have a global function called 'the' which is only called once.
In fact, every single one of your functions is global, which is blowing my mind.
[CODE]
if not file.Exists( "uniquejoins.txt", "DATA" ) then
file.Write( "uniquejoins.txt", 0 )
end
hook.Add( "PlayerInitialSpawn", function( ply )
if not ply:GetPData( "Prevjoin" ) then
ply:SetPData( "Prevjoin", true )
file.Write( "uniquejoins.txt", file.Read( "uniquejoins.txt", "DATA" ) + 1 )
end
end )
hook.Add( "PlayerSay", "!stats", function ( ply, txt )
if txt == "!stats" then
ply:ChatPrint( "There have been " .. file.Read( "uniquejoins.txt", "DATA" ) .. " unique players on this server." )
end
end )
[/CODE]
just do this, ok?[/QUOTE]
ok, like I said I haven't done much work with stuff like this, ( I know I didn't say those words exactly but ) I just saw the script was 2 dollars and that blew my mind
It's not about the money, it's about the people that buys that...
So, I'm reconsidering re-creating SpecDM. It's a tough task and I have no clue how to do most of what I saw in [url]https://www.youtube.com/watch?v=48M0tOPUmqo[/url].
If anyone wants to contribute, you're welcome to do so at [url]https://github.com/NekuMitsurugi/Spectator-Deathmatch[/url]
[QUOTE=Ven01273;46036382]So, I'm reconsidering re-creating SpecDM. It's a tough task and I have no clue how to do most of what I saw in [url]https://www.youtube.com/watch?v=48M0tOPUmqo[/url].
If anyone wants to contribute, you're welcome to do so at [url]https://github.com/NekuMitsurugi/Spectator-Deathmatch[/url][/QUOTE]
What coding style is preferred. I'll chip in when I can however I am on holidays so don't expect much from me.
[QUOTE=Ven01273;46036382]So, I'm reconsidering re-creating SpecDM. It's a tough task and I have no clue how to do most of what I saw in [url]https://www.youtube.com/watch?v=48M0tOPUmqo[/url].
If anyone wants to contribute, you're welcome to do so at [url]https://github.com/NekuMitsurugi/Spectator-Deathmatch[/url][/QUOTE]
You can use the Loadout system from my Loadout addon if you want.
[url]https://github.com/Exho1/TTT_Loadout_Menu[/url]
CrazyScouter's is probably a bit more efficient though
[url]https://github.com/crazyscouter/TTT-Loadout-Menu[/url]
Either way, hope that helps a little. I might see what I can pitch in later
[QUOTE=Ven01273;46036382]So, I'm reconsidering re-creating SpecDM. It's a tough task and I have no clue how to do most of what I saw in [url]https://www.youtube.com/watch?v=48M0tOPUmqo[/url].
If anyone wants to contribute, you're welcome to do so at [url]https://github.com/NekuMitsurugi/Spectator-Deathmatch[/url][/QUOTE]
Well for now you're doing a good job copypasting my code, heh
Mine :
[img]http://image.noelshack.com/fichiers/2014/38/1411322193-capture.jpg[/img]
Github:
[img]http://image.noelshack.com/fichiers/2014/38/1411322239-capture.jpg[/img]
Come on, recreating it is okay (everyone has the right to do it), but don't use my code please. And you didn't even buy it from me...
[QUOTE=tommy228;46040701]Well for now you're doing a good job copypasting my code, heh
Mine :
[img]http://image.noelshack.com/fichiers/2014/38/1411322193-capture.jpg[/img]
Github:
[img]http://image.noelshack.com/fichiers/2014/38/1411322239-capture.jpg[/img]
Come on, recreating it is okay (everyone has the right to do it), but don't use my code please. And you didn't even buy it from me...[/QUOTE]
ooooouhhhhh BUUUUUUUUUUUUUUUUUUUUUUURN :D
Nice tommy :D
Shiiittt, busted. If you copy code then you can't post it here because thats not the point of the thread. Copying is bad, mkay. Recreating ideas ONLY is what this thread is about
Sorry,
The point was to get it started. I will not be copying the code, which is why I'm not continuing this.
If you want the repo removed or at least that part rewritten, just ask.
To be honest, I didn't intend to copy, I just didn't feel interested enough to research it on my own.
Again, I apologize.
[QUOTE=Ven01273;46041803]Sorry,
The point was to get it started. I will not be copying the code, which is why I'm not continuing this.
If you want the repo removed, just ask.
To be honest, I didn't intend to copy, I just didn't feel interested enough to research it on my own.
Again, I apologize.[/QUOTE]
Well it would probably be a good idea to remove it before anyone comes along and downloads it (assuming you copied everything)
[QUOTE=bluebull107;46041843]Well it would probably be a good idea to remove it before anyone comes along and downloads it (assuming you copied everything)[/QUOTE]
No, that's only part I didn't do myself.
Besides, it won't do anything in its current state. c:
Edit: Except the hud, that's copy pasted from ttt.
Well, I won't be helping anymore, I thought you were going to be a decent coder but if you had to copy and paste a simple thing then....
[URL="http://coderhire.com/scripts/view/1113"]Paid[/URL] and[URL="http://facepunch.com/showthread.php?t=1282806"]Free[/URL] TTT Death Badge
Spec DM is something that makes sense to pay for. I tried my hand at making it but really dont know where to start. Plus Gmod and the constant freezing makes me want to strangle Garry
[QUOTE=AnonTakesOver;46042610]Well, I won't be helping anymore, I thought you were going to be a decent coder but if you had to copy and paste a simple thing then....[/QUOTE]
Uh??
Most coders C&P to start off
if i was recreating specdem, i wouldnt know what the fuck to do, i'd just C&P then start rewriting it all slowly.
[QUOTE=zerothefallen;46044320]Uh??
Most coders C&P to start off
if i was recreating specdem, i wouldnt know what the fuck to do, i'd just C&P then start rewriting it all slowly.[/QUOTE]
And that is your preference, I prefer looking at the wiki, and brainstorming ideas on how to approach it, that doesn't mean that I think I am better than you or that you are better than me, it's just my way of doing a task. I can understand how that is an approachable way, learning by example, which is what I would also do, read some peoples code. But I wouldn't normally directly copy and paste something, maybe a helper function, for example I have copied and pasted a simple function to calculate a better view for the model panel in derma, due to my poor math at the time.
But, I barely know anything about this person, and the first bit of code I see from them is copy and pasted directly from an addon he has doesn't own. I'm sure you can see why I'm hesitant to help with his project.
If it was you doing the project, i probably wouldn't have cared to much about the copy and paste as I know you can code, I haven't sen any of your code but I have seen you aroun and you know what you are talking about normally.
[QUOTE=AnonTakesOver;46044424]And that is your preference, I prefer looking at the wiki, and brainstorming ideas on how to approach it, that doesn't mean that I think I am better than you or that you are better than me, it's just my way of doing a task. I can understand how that is an approachable way, learning by example, which is what I would also do, read some peoples code. But I wouldn't normally directly copy and paste something, maybe a helper function, for example I have copied and pasted a simple function to calculate a better view for the model panel in derma, due to my poor math at the time.
But, I barely know anything about this person, and the first bit of code I see from them is copy and pasted directly from an addon he has doesn't own. I'm sure you can see why I'm hesitant to help with his project.
If it was you doing the project, i probably wouldn't have cared to much about the copy and paste as I know you can code, I haven't sen any of your code but I have seen you aroun and you know what you are talking about normally.[/QUOTE]
then why am i indecent for taking code to work off of.
the point of code is to read, copy, and re-use
very seldom is something 100% original 0 C&P or ideas taken from anywhere
[QUOTE=AnonTakesOver;46044424]
<snip>
But, I barely know anything about this person, and the first bit of code I see from them is copy and pasted directly from an addon he has doesn't own. I'm sure you can see why I'm hesitant to help with his project.
<snip>
[/QUOTE]
:c
I made:
- [URL="http://forums.ulyssesmod.net/index.php/topic,6938.0.html"]CenKik[/URL] (Although not functional at the moment.)
- [URL="http://forums.ulyssesmod.net/index.php/topic,7311.0.html"]ULX Observation Mode[/URL]
I assisted:
- [URL="http://forums.ulyssesmod.net/index.php/topic,7437.0.html"]Trouble in Terrorist Town Commands for ULX[/URL]
- [URL="http://forums.ulyssesmod.net/index.php/topic,7615.msg38742.html#msg38742"]Misc (Player History)[/URL]
I dunno, I usually make stuff like ZTF, C&P then rebuild.
If you have any doubts about me, you can see my entire post history at [url]http://forums.ulyssesmod.net/index.php?action=profile;u=5938[/url]
Sorry, you need to Log In to post a reply to this thread.