I wouldn't mind helping out as an organizer, considering I'm sick and have nothing better to do.
[QUOTE=meharryp;47435283]I wouldn't mind helping out as an organizer, considering I'm sick and have nothing better to do.[/QUOTE]
Added. Organisers can now see reports too.
Mind if I become an organizer too? I've got way to much time on my hands and nothing to do
[QUOTE=NiandraLades;47429692][img]http://i.imgur.com/ywsMMTH.png[/img]
fuck YEAH[/QUOTE]
could you send me an link to it? i need it cuz reasons
Some re-uploaded addons seem to do this:
[IMG]http://i.imgur.com/w5brA50.jpg[/IMG]
I'll help as an organizer if you need one.
Also, makes sense for the downloads then.
[QUOTE=meharryp;47435375]*how to thumb?*[/quote]
Please...
[t]http://i.imgur.com/w5brA50.jpg[/t]
What would I even tag a background as? Material or addon?
Tag is as a background.
Well the type I mean.
Oh.. Not really sure on that one. I guess we could ask Adam to fix us up some tools for maybe adding a new type?
[QUOTE=adamdburton;47435296]Added. Organisers can now see reports too.[/QUOTE]
I can't really help out financially but I can always help out with this if you need more help.
[QUOTE=Goz3rr;47435823]I can't really help out financially but I can always help out with this if you need more help.[/QUOTE]
I'll take all the help I can get (from people I know). See organisation option under account tab.
Instead of donating [B]actual [/B]money I sent you a game adam, hope you enjoy :v:
[QUOTE=Zelpa;47435871]Instead of donating [B]actual [/B]money I sent you a game adam, hope you enjoy :v:[/QUOTE]
Just what I always wanted, thanks dude!
[QUOTE=adamdburton;47435918]Just what I always wanted, thanks dude![/QUOTE]
Plot twist: Sarcasm.. Like when you say you always wanted socks for christmas..
On a serious note, would it be at all possible for organisers to create new types? I understand this is a rare situtation but it was brought up before about backgrounds. If this is the only case you can just do it yourself obviously but it could be something to think about?
[t]http://i.imgur.com/zuqMQYN.png[/t]
Could you fix the browse menu? It goes off the bottom of my 1920x1080 screen slightly.
[QUOTE=G4MB!T;47435941]Plot twist: Sarcasm.. Like when you say you always wanted socks for christmas..[/QUOTE]
Uh no, I think he really appreciated Bad Rats.
[QUOTE]On a serious note, would it be at all possible for organisers to create new types? I understand this is a rare situtation but it was brought up before about backgrounds. If this is the only case you can just do it yourself obviously but it could be something to think about?[/QUOTE]
Same with things like weapon skins. Would I set the type to material? That doesn't seem to be very well explained.
edit: Also, maybe adding a tag auto complete would be helpful. Then we wouldn't have 2 tags for skin and skins.
[QUOTE=CryoDragon;47435982][t]http://i.imgur.com/zuqMQYN.png[/t]
Could you fix the browse menu? It goes off the bottom of my 1920x1080 screen slightly.[/QUOTE]
Fixed, thanks.
[editline]1st April 2015[/editline]
I'll see about letting you add types, I just don't want is spamming with things like background which would be fine under materials with a 'background' tag. Same for weapon skins.
Ye that was the issue I was thinking about. You dont want the types to be littered with things that could easily be tags. Not trying to be offensive but a lot of .. Less skilled? .. People will probably use this site (People that dont know what materials are).
Is there a remove function for reported files? Because most of the stuff thats reported has to be removed.
[QUOTE=Knoxed;47436521]Is there a remove function for reported files? Because most of the stuff thats reported has to be removed.[/QUOTE]
For moderators yeah.
adam -- I'll send some cash your way next month to help keep this thing afloat :)
Any way to display more than 20 addons per page?
liking the website so far, great job
will there be quality control for certain multiple re-uploads or dupes that contain 2 ragdolls in sex positions?
[QUOTE=maurits150;47437386]Any way to display more than 20 addons per page?[/QUOTE]
Will make this user selectable shortly.
[editline]1st April 2015[/editline]
[QUOTE=SonicHitman;47437418]liking the website so far, great job
will there be quality control for certain multiple re-uploads or dupes that contain 2 ragdolls in sex positions?[/QUOTE]
Yeah, just report them. All imports from the old site are automatic.
[editline]1st April 2015[/editline]
The April Fools Day festivities gained me $4.26 towards hosting costs, thanks guys!
About organisation: should we modify descriptions? I see some imported with modified descriptions and some with default. I've just been retagging, recategorizing, retitling, though there are uploads that I know of with facepunch threads made by the authors (but no steam profiles :suicide:) with descriptions we could c+p
[QUOTE=zerf;47439202]About organisation: should we modify descriptions? I see some imported with modified descriptions and some with default. I've just been retagging, recategorizing, retitling, though there are uploads that I know of with facepunch threads made by the authors (but no steam profiles :suicide:) with descriptions we could c+p[/QUOTE]
Whatever you think works best. Some of the descriptions have scraped from archive.org like shit so a replacement would probably work better in some cases.
Is the search bar broken for anyone else? [url]http://gyazo.com/f4c0a58c56c621599f1cd848cf01e31a[/url]
What's the policy on poorly coded imported addons?
For example, [URL="https://garrysmods.org/download/199/ulx-prefixeszip"]this[/URL] elif stack.
[lua]
function insertChatTags(ply, msg)
if ply:IsValid() then
local ply_team = ply:Team()
local team_name = team.GetName( ply_team )
--local h,s,v = ColorToHSV( team.GetColor( ply_team ) )
--local comp_col = HSVToColor( 180-h, s, v )
--PHX-Server specifics
if ( team_name == "Owner" ) then
comp_col = Color(255,255,255)
elseif ( team_name == "Co-Owner" ) then
comp_col = Color(255,255,255)
elseif ( team_name == "SuperAdmin" ) then
comp_col = Color(255,255,255)
elseif ( team_name == "Admin" ) then
comp_col = Color(255,255,255)
elseif ( team_name == "Donator" ) then
comp_col = Color(255,255,255)
elseif ( team_name == "Trusted" ) then
comp_col = Color(255,255,255)
elseif ( team_name == "user" ) then
comp_col = Color(255,255,255)
team_name = "Guest"
else
comp_col = Color(255, 255, 255)
end
chat.AddText( team.GetColor( ply_team ), "[",comp_col, team_name,team.GetColor( ply_team ), "] ", ply:GetName(), color_white, ": ", msg )
return true
end
end
hook.Add( "OnPlayerChat", "ulx_chattags", insertChatTags )
[/lua]
Are they being kept for historical purposes, hidden, deleted, etc?
On a similar note, what about addons broken between gmod 12 -> 13? I'm sure there are a large quantity of those being imported. Will there be a team similar to organizers such as "fixers"?
Sorry, you need to Log In to post a reply to this thread.