[QUOTE=Author.;46184492]What happens when someone uploads a script? Is it automated and put straight up on the website?[/QUOTE]
[QUOTE=YourStalker;46175579][img]http://i.imgur.com/qHPfzSh.png[/img][/QUOTE]
[QUOTE=Author.;46184492]What happens when someone uploads a script? Is it automated and put straight up on the website?[/QUOTE]
We are understaffed right now so script posting is automatic. When I get the steam login working I will make sure to mark scripts as approved only🔮
[editline]9th October 2014[/editline]
I am also reviewing 3+ facepunch members that have applied for staff.
Could you atleast change the name to something original.
[QUOTE=nettsam;46188168]Could you atleast change the name to something original.[/QUOTE]
Hahah I like the name
There is no effort in this site, its build on wordpress using a wordpress theme. YOu could have done a better job with a forum.
[editline]9th October 2014[/editline]
At least the password isn't admin.
Also,
why can't you log in through Steam? And you shouldn't have to log in for [b]free[/b] scripts. It was already pretty bad but that is just the last nail in the coffin...
[QUOTE=RonanZer0;46193228]Also,
why can't you log in through Steam? [/QUOTE]
didn't integrate it yet.
[QUOTE=RonanZer0;46193228] And you shouldn't have to log in for [b]free[/b] scripts. It was already pretty bad but that is just the last nail in the coffin...[/QUOTE]
so i guess you didn't like garrysmod.org? all those scripts were free and you had to log in.
[QUOTE=FrankPetrov;46194770]didn't integrate it yet.
so i guess you didn't like garrysmod.org? all those scripts were free and you had to log in.[/QUOTE]
With Steam. It actually had a [b]POINT[/b], to you know [i]verify that you own Garry's Mod to prevent pirates[/i], which is completely nullified if you have an external registration system... This is a lost cause. I'm done. :suicide:
garrysmod.org spent most of it's life not being steam login, yet still everyone used it, i also highly doubt it prevented any piracy as pirates were using other forums to get addons
this thread really is just people bringing up silly points
[QUOTE=RonanZer0;46194888]With Steam. It actually had a [b]POINT[/b], to you know [i]verify that you own Garry's Mod to prevent pirates[/i], which is completely nullified if you have an external registration system... This is a lost cause. I'm done. :suicide:[/QUOTE]
I've already mentioned twice in this thread that I'm implementing a steam login box to replace the Wordpress login. It's taking a little loner than expected.
I gave away 2 free copies of the spawn creator already... I've released a couple other things on my free market.
[url]http://addonmarketplace.site.nfoservers.com/forums/portal.php[/url]
[QUOTE=Subject_Alpha;46199071]I gave away 2 free copies of the spawn creator already... I've released a couple other things on my free market.
[url]http://addonmarketplace.site.nfoservers.com/forums/portal.php[/url][/QUOTE]Can you not self promote in unrelated threads. Its annoying as fuck.
Its not unreleated. I've got the same thing on Coder^Higher for free...
[QUOTE=Subject_Alpha;46203419]Its not unreleated. I've got the same thing on Coder^Higher for free...[/QUOTE]
His website is similar to coderhire. Yours is a forum that's somewhat similar to workshop or garrysmod.org. Quite different imo since his is intended for paid stuff.
[QUOTE=Subject_Alpha;46203419]Its not unreleated. I've got the same thing on Coder^Higher for free...[/QUOTE]
And you are releasing other people'c code under your own name.
[url=http://facepunch.com/showthread.php?t=1389699]Nice little thread about zombie spawning[/url]
Their code:
[lua]
local numZombies = 0
local maxZombies = 10
function ZombieSpawns()
if ( numZombies < maxZombies ) then
local zombie = ents.Create("npc_zombie")
zombie:SetPos( Vector( -393.009399, 5451.424316, -10111.968750 ) )
zombie:Spawn()
numZombies = numZombies + 1
timer.Simple( 10, ZombieSpawns )
end
end
hook.Add( "InitPostEntity", "StartZombieSpawning", ZombieSpawns )
[/lua]
You code:
[lua]
local numZombies = 0
local maxZombies = 500
function ZombieSpawns()
timer.Create( "Respawner", 60, 10000, function()
if ( numZombies < maxZombies ) then
for k, v in pairs( ZombieSpawnPoints ) do
local zombie = ents.Create( "npc_zombie" )
zombie:SetPos( v.pos )
zombie:SetCustomCollisionCheck( true )
zombie:Spawn()
zombie:Activate()
numZombies = numZombies + 1
end
end
end )
end
hook.Add( "ShouldCollide", "ZombieNoCollide", function( ent1, ent2 )
if ( ent1:GetClass() == "npc_zombie" and ent2:GetClass() == "npc_zombie" ) then
return false
end
end )
hook.Add( "InitPostEntity", "StartZombieSpawning", ZombieSpawns )
[/lua]
I don't know about anybody else. But I'm not comfortable giving these guys my email address, and they specifically require it to email the password - instead of allowing you to choose your own. Enable Steam Auth already.
[QUOTE=KillerLUA;46206518]I don't know about anybody else. But I'm not comfortable giving these guys my email address, and they specifically require it to email the password - instead of allowing you to choose your own. Enable Steam Auth already.[/QUOTE]
It's also just plain more secure to use steam authentication. I don't really get why game communities for gmod don't do it either. The added benefit is if you really wanted to, you could have it so when you ban someone ingame, they're banned on the forums as well with the exception of ban appeal areas.
Your friend has the wrong idea i see a spot for a price tag thats were he is wrong any idot can code lua addons so why charge money for them somone will just make a free version.
[QUOTE=Killercody;46209595]Your friend has the wrong idea i see a spot for a price tag thats were he is wrong any[B] idot can code lua addons [/B]so why charge money for them somone will just make a free version.[/QUOTE]
Uh huh. That's why so many people put up jobs to get stuff created for them. While lua is a very small, easy to learn language some people just don't want to learn it.
[QUOTE=Killercody;46209595]Your friend has the wrong idea i see a spot for a price tag thats were he is wrong [B]any idot can code lua addons[/B] so why charge money for them somone will just make a free version.[/QUOTE]
May we have some examples of what you've coded?
[QUOTE=NiandraLades;46209851]May we have some examples of what you've coded?[/QUOTE]
Seeing as how he misspelled "idiot" I don't believe he has any examples.
[QUOTE=KillerLUA;46206518]I don't know about anybody else. But I'm not comfortable giving these guys my email address, and they specifically require it to email the password - instead of allowing you to choose your own. Enable Steam Auth already.[/QUOTE]
1) Most sites send an email confirmation anyways.
2) Feel free to make a fake email for this occasion.
3) The Steam Log-In is a work in progress. It's taking longer than expected due to complications with WordPress. We want to make sure the system with Steam is just as secure as our current system before we go live.
[QUOTE=dingusnin;46206142]And you are releasing other people'c code under your own name.
[url=http://facepunch.com/showthread.php?t=1389699]Nice little thread about zombie spawning[/url]
Their code:
[lua]
local numZombies = 0
local maxZombies = 10
function ZombieSpawns()
if ( numZombies < maxZombies ) then
local zombie = ents.Create("npc_zombie")
zombie:SetPos( Vector( -393.009399, 5451.424316, -10111.968750 ) )
zombie:Spawn()
numZombies = numZombies + 1
timer.Simple( 10, ZombieSpawns )
end
end
hook.Add( "InitPostEntity", "StartZombieSpawning", ZombieSpawns )
[/lua]
You code:
[lua]
local numZombies = 0
local maxZombies = 500
function ZombieSpawns()
timer.Create( "Respawner", 60, 10000, function()
if ( numZombies < maxZombies ) then
for k, v in pairs( ZombieSpawnPoints ) do
local zombie = ents.Create( "npc_zombie" )
zombie:SetPos( v.pos )
zombie:SetCustomCollisionCheck( true )
zombie:Spawn()
zombie:Activate()
numZombies = numZombies + 1
end
end
end )
end
hook.Add( "ShouldCollide", "ZombieNoCollide", function( ent1, ent2 )
if ( ent1:GetClass() == "npc_zombie" and ent2:GetClass() == "npc_zombie" ) then
return false
end
end )
hook.Add( "InitPostEntity", "StartZombieSpawning", ZombieSpawns )
[/lua][/QUOTE]
I made an open thread about the subject earlier in may. I was given the code here
[url]http://facepunch.com/showthread.php?t=1395008&p=44855018#post44855018[/url]
And I believe I said in the addon.txt thanks to ShadowRanger for helping me out with it. I was merely trying to distribute it so people could find it easier rather than doing a lengthy search on Google. Sorry.
I'm am proud to announce that the Steam log-in has been deemed secure and will be going live tomorrow. Thank you all for waiting patiently. I will keep this thread updated.
Few years ago i was selling custom HUD (Photoshop, autosizing....) for about 20-30$
Now peoples want to pay me 3$.
Why keep trying to make your website a success when there is no activity and 3 kids who want to become staff? Matt and Phoenix have already promised us [i]free[/i] script releases on HUDFodder. You're wasting your time man.
Sorry, you need to Log In to post a reply to this thread.