• CoderHire
    5,088 replies, posted
[QUOTE=BigBadWilly;44666348]The surprising thing is even with the amount of times your script has been leaked, I hardly see it on servers no offence, Like prophuntv2 I searched yesterday for servers with it and I found only like 5-10 servers really :/ I think I personally remember "SkiDS" from somewhere but I don't know exactly where.[/QUOTE] [url]https://www.dropbox.com/s/4d68gaip6u3rvmf/Prop%20Hunt%20V2.zip[/url]
[QUOTE=YourStalker;44669306][url]https://www.dropbox.com/s/4d68gaip6u3rvmf/Prop%20Hunt%20V2.zip[/url][/QUOTE] I'm sorry sir but I already bought Prophunt v2, Plus I'm a good friend of Phoenix and I find it stupid to use leaked scripts when one you could buy them, Yes you're losing money but you get support and people worked hard on making scripts. By using leaked scripts your giving them a royal fuck you for there hard work.
[QUOTE=BigBadWilly;44669422]I'm sorry sir but I already bought Prophunt v2, Plus I'm a good friend of Phoenix and I find it stupid to use leaked scripts when one you could buy them, Yes you're losing money but you get support and people worked hard on making scripts. By using leaked scripts your giving them a royal fuck you for there hard work.[/QUOTE] Before you accuse him of posting leaked scripts, how about you actually download it and see what's inside?
[QUOTE=code_gs;44670911]Before you accuse him of posting leaked scripts, how about you actually download it and see what's inside?[/QUOTE] Well at first it looks like a leaked script and since I don't touch or use them why would I? Plus how am I not to know if it has a virus or not have you ever thought of that? Plus It's rick & Roll lyrics -_-
[QUOTE=BigBadWilly;44672202]Well at first it looks like a leaked script and since I don't touch or use them why would I? Plus how am I not to know if it has a virus or not have you ever thought of that? Plus It's rick & Roll lyrics -_-[/QUOTE] You are not very good with computers, are you?
[QUOTE=BigBadWilly;44672202]Well at first it looks like a leaked script and since I don't touch or use them why would I? Plus how am I not to know if it has a virus or not have you ever thought of that? Plus It's rick & Roll lyrics -_-[/QUOTE] Me and Phoenix are pals...... Rick & Roll. Seriously?
Am I the only one who raises an eyebrow when people make jobs asking others to set a server up for them Like, if you can't even set it up yourself, how are you going to manage running it?
Mostly its cause they buy some CH scripts and let's a guy set it up for them and hope to get a lot of donations. That's my experience with people that had other setting it up. ps. Niandra the picture of youself looks way better than your current avatar.... pls
[QUOTE=NiandraLades;44673876]Am I the only one who raises an eyebrow when people make jobs asking others to set a server up for them?[/QUOTE] Your avatar fits
Hey, since he threatened to leak; if you wanted you could charge him for every illegitimate server its running on and take him to civil / small-claims, possibly higher up if he gives it out to a ton of people. Oh hey, can you create an API to access CoderHires ban-list please? Please make the ban-list public so I can integrate it into my server. Allow us to choose the offenses of which they were banned on CoderHire to block them from the server.. IE: Being a minge, leaking offense, chargeback offenses, etc... When we access the API, allow us to input x, y and z infringements they were banned for to block from coming on our server.
[QUOTE=Acecool;44674695]Hey, since he threatened to leak; if you wanted you could charge him for every illegitimate server its running on and take him to civil / small-claims, possibly higher up if he gives it out to a ton of people. Oh hey, can you create an API to access CoderHires ban-list please? Please make the ban-list public so I can integrate it into my server. Allow us to choose the offenses of which they were banned on CoderHire to block them from the server.. IE: Being a minge, leaking offense, chargeback offenses, etc... When we access the API, allow us to input x, y and z infringements they were banned for to block from coming on our server.[/QUOTE] Banning people for what they done on a public script service?? Really Acecool.... its not the same
[QUOTE=SarahKerrigan;44674771]Banning people for what they done on a public script service?? Really Acecool.... its not the same[/QUOTE] You're not understanding; people that leak scripts, or perform constant chargebacks shouldn't be on a server that accepts donations. Chargebacks cost a lot of money and right now is not a good time. I was told by my doctor that I may need to go under the knife for my broken neck from a car accident that happened almost 3 years just shy of a week-and-a-few-days for several surgeries. So, every penny will count... If people leak, I don't need them trying to capture some of my Lua to use or distribute when they're not authorized. And chargebacks, no fun. Those would be my personal choices when querying the API; is the user a leaker, is the user a charge-back offender ( obviously if it was a justified chargeback then it wouldn't ban them ) I don't see how its any different from VAC banning a user for using "bind x +attack;wait;+lookdown;wait;wait;-lookdown;wait;-attack" on an empty server and being banned permanently...
Here you go: [url]http://coderhire.com/api/users/banned/76561198012507567[/url] I wouldn't count on the ban reasons be very useful though. [code] {"status":"success","success":{"banned":true,"ban_reason":"e-cheque dumbassery","ban_expiration":"0","previous_bans":"0"}} [/code] The ban_expiration field is 0 when permanent. You'll get this if the user hasn't registered on CH. [code] {"status":"error","error":"The resource was not found."} [/code] Cloudflare will limit access to it so don't send requests too often.
I'd do a query once per user and cache it for the remainder of the session. I keep my dev server up for a week+ at times with no issues while running certain tests non-stop. So if the user is banned then it'd store it in sql as a ban, referred by CoderHire with the reason, etc. and never query again for that user unless I remove the ban. I'll have to build a good word-base for parsing the reasons to verify if it's for chargebacks, or leaking, etc depending on how variant they're written. A simple string.find should suffice. If a user tries joining and no ban is found, then it'd just store it in a table as checked, and passed; that steamid won't be checks for a while. Many thanks!
[QUOTE=adamdburton;44674960]Cloudflare will limit access to it so don't send requests too often.[/QUOTE] How often is too often? I'm all for excluding access to my servers for people who leak shit :v:
[QUOTE=EvacX;44675456]How often is too often? I'm all for excluding access to my servers for people who leak shit :v:[/QUOTE] 5-10 minutes will be fine. Just cache the results for a while. Cloudflare doesn't like requests from clients that aren't proper web browsers and will start rejecting them if they happen too often.
Just because someone isn't good at making a server doesn't mean that they can't manage something, I've run in with multiple people who couldn't even make or added anything right in his server yet he was still great at managing the server and if am right now he gets over 25 players every day no problem.
[QUOTE=adamdburton;44675476]5-10 minutes will be fine. Just cache the results for a while. Cloudflare doesn't like requests from clients that aren't proper web browsers and will start rejecting them if they happen too often.[/QUOTE] If many people join at once, and they haven't been cached it may cause an issue. Maybe a better solution would be to allow us to download the entire ban-list as one big json lump so we can access once per 24 hours or more to update the cache in txt form, what do you think? That would limit a bunch of servers pinging you when players connect that haven't been cached yet.
[QUOTE=Acecool;44676065]If many people join at once, and they haven't been cached it may cause an issue. Maybe a better solution would be to allow us to download the entire ban-list as one big json lump so we can access once per 24 hours or more to update the cache in txt form, what do you think? That would limit a bunch of servers pinging you when players connect that haven't been cached yet.[/QUOTE] Seems a bit unwieldy but I guess it's better than being cockblocked by cloudflare
-removed-
I want to ask a simple question and I ask to not get flame for it, But if there is per say lets say a Game mode or Addon that is old old like gmod 10-12 and it needs porting and re fixing and re coding parts of it, Is it allowed to be uploaded to coder hire to be sold or is that not allowed period? Or possibly if you ask the owners permission then if its a yes can you?
[QUOTE=BigBadWilly;44680097]I want to ask a simple question and I ask to not get flame for it, But if there is per say lets say a Game mode or Addon that is old old like gmod 10-12 and it needs porting and re fixing and re coding parts of it, Is it allowed to be uploaded to coder hire to be sold or is that not allowed period?[/QUOTE] Obviously no. [QUOTE=BigBadWilly;44680097]Or possibly if you ask the owners permission then if its a yes can you?[/QUOTE] Obviously yes. [quote=Script Selling Rules]Scripts sold MUST BE YOUR OWN WORK. Samples from each script are searched for on the internet to make sure it's not taken from somewhere else. The ONLY exception to this rule is where content created for a job on the site can then be sold by the hirer, ONLY if the license (shown on the site) permits it, [B]or with permission from the author.[/B][/quote]
[QUOTE=EvacX;44680188]Obviously no. Obviously yes.[/QUOTE] Thxs for the fast response, Was just needing to ask for a mate of mine who doesn't have a facepunch account. Will tell him when he's back for supper.
Do devs not get ticket notifications? I have three tickets in, none of which have been answered.
Helping someone install my AC via teamviewer, he has over 20 pictures of hitler, hitler driving, göbbels, "Hitler der Führer" and other stuff like that on his desktop. Then he asks me if I'm offended by the pictures, opens pornhub and puts it in the background. Just wat.
You're nice enough to help him and that's the thanks you get.
[QUOTE=MuteTM;44680947]Do devs not get ticket notifications? I have three tickets in, none of which have been answered.[/QUOTE] No they just get flooded with notifications from other things.
[QUOTE=Leystryku;44681190]Helping someone install my AC via teamviewer, he has over 20 pictures of hitler, hitler driving, göbbels, "Hitler der Führer" and other stuff like that on his desktop. Then he asks me if I'm offended by the pictures, opens pornhub and puts it in the background. Just wat.[/QUOTE] Yet the story is what kind of porn did he put on O.o?
[QUOTE=BigBadWilly;44681427]Yet the story is what kind of porn did he put on O.o?[/QUOTE] Why are you so interested ;)
[QUOTE=BigBadWilly;44681427]Yet the story is what kind of porn did he put on O.o?[/QUOTE] It was a video of Anne Frank being caught... Expect the Nazis only had their hats on.
Sorry, you need to Log In to post a reply to this thread.