[QUOTE=Pon-3;38388320]How could I remove FAdmin in darkrp while still having a working scoreboard? The scoreboard on garrysmod.org doesn't work.
Almost fixed my own problem:
[url]http://steamcommunity.com/sharedfiles/filedetails/?id=107152155&searchtext=scoreboard[/url]
It is okay, but ULX is broken without fadmin so had to go back.[/QUOTE]
did you just delete fadmin_darkrp.lua and not the entire fadmin folder? because it works for me.
I just have the problem of rp names not displaying on the scoreboard half the time (even before removing fadmin)
[QUOTE=KlimKookie;38392760]did you just delete fadmin_darkrp.lua and not the entire fadmin folder? because it works for me.
I just have the problem of rp names not displaying on the scoreboard half the time (even before removing fadmin)[/QUOTE]
I should have stated it clearly. ULX is broken with or without fadmin. However, when I set a rank in ULX, it sets the rank in FADmin.
[QUOTE=Pon-3;38397372]I should have stated it clearly. ULX is broken with or without fadmin. However, when I set a rank in ULX, it sets the rank in FADmin.[/QUOTE]
The rank being shared between two admin mods sounds like a good thing to me. I don't want people to have one rank in FAdmin and another in ULX.
[QUOTE=FPtje;38356879]customCheck = function(ply)
...
end[/QUOTE]
Doesn't work for me...I'm just getting a lua error: expected } got customCheck or something similar to that.
[QUOTE=FPtje;38398164]The rank being shared between two admin mods sounds like a good thing to me. I don't want people to have one rank in FAdmin and another in ULX.[/QUOTE]
There should be something like CPPI for admin mods *hint*
[QUOTE=ms333;38398653]Doesn't work for me...I'm just getting a lua error: expected } got customCheck or something similar to that.[/QUOTE]
Full example:
[lua]
TEAM_CITIZEN = AddExtraTeam("Citizen", {
color = Color(20, 150, 20, 255),
model = {
"models/player/Group01/Female_01.mdl",
"models/player/Group01/Female_02.mdl",
"models/player/Group01/Female_03.mdl",
"models/player/Group01/Female_04.mdl",
"models/player/Group01/Female_06.mdl",
"models/player/Group01/Female_07.mdl",
"models/player/group01/male_01.mdl",
"models/player/Group01/Male_02.mdl",
"models/player/Group01/male_03.mdl",
"models/player/Group01/Male_04.mdl",
"models/player/Group01/Male_05.mdl",
"models/player/Group01/Male_06.mdl",
"models/player/Group01/Male_07.mdl",
"models/player/Group01/Male_08.mdl",
"models/player/Group01/Male_09.mdl"
},
description = [[The Citizen is the most basic level of society you can hold
besides being a hobo.
You have no specific role in city life.]],
weapons = {},
command = "citizen",
max = 0,
salary = 45,
admin = 0,
vote = false,
hasLicense = false,
customCheck = function(ply)
return ply:IsAdmin()
end
})[/lua]
[editline]10th November 2012[/editline]
[QUOTE=zQaX;38398924]There should be something like CPPI for admin mods *hint*[/QUOTE]
I'm not making it.
I still don't know why my server still allows normal users to use VIP jobs. I did this:
[CODE]
if table.HasValue( vipteams, t ) and !force and not self:IsAdmin() and not self:IsUserGroup("VIP") then
GAMEMODE:Notify(self, 1, 4, string.format("You must be VIP to access this job"))
return false
end
[/CODE]
within function meta:ChangeTeam(t,force)
I also have tried this:
[CODE]
TEAM_HIT = AddExtraTeam("Hitman", Color(153,153,153,255), "models/player/barney.mdl", [[You "whack off" those un wanted guests...for a price.]], {"weapon_mad_tmp"}, "HIT", 2, 40, 0, true, nil, function(ply) return ply:GetNWString("usergroup") == "VIP" or ply:IsAdmin() end)
[/CODE]
Nothing seems to work for me. My DarkRP is completely updated.
Not sure what the issue is for me but here is a snippet of the code for a custom shipment and what am I doing wrong?
[code]AddCustomShipment("Beretta M9" , {
model = "models/weapons/b_92f.mdl",
entity = "weapon_fas_m9",
price = 275,
amount = 10,
seperate = true,
pricesep = 0,
noship = false,
allowed = {TEAM_GUN]
})[/code]
[QUOTE=Pon-3;38400918]I still don't know why my server still allows normal users to use VIP jobs. I did this:
[CODE]
if table.HasValue( vipteams, t ) and !force and not self:IsAdmin() and not self:IsUserGroup("VIP") then
GAMEMODE:Notify(self, 1, 4, string.format("You must be VIP to access this job"))
return false
end
[/CODE]
[/QUOTE]
I don't know how, but this works now. I think it is because I originally just had return, but when I added false (return false) it worked!
I now need to know how to make it so when they buy VIP on paypal, it promotes them automatically in-game.
I really hope someone can help me out here, I just setup a fresh copy of DarkRP on my dedicated srcds server. I'm getting an error: CSS is incorrectly installed.
I installed CSS into my HLServer Dir
HLServer Dir:
hl2
orangebox
css
I still got the message with css in the hlserver dir so I moved it into my orangebox dir.
orangebox dir:
bin
css
garrysmod
hl2
etc
etc
Still getting the message were exactly is the css folder suppost to be placed?
[QUOTE=Nazban;38402198]I really hope someone can help me out here, I just setup a fresh copy of DarkRP on my dedicated srcds server. I'm getting an error: CSS is incorrectly installed.
I installed CSS into my HLServer Dir
HLServer Dir:
hl2
orangebox
css
BLAH BLAH BLAH[/QUOTE]
Go into that css folder and pull the cstrike folder out to orangebox. Problem solved!
[editline]10th November 2012[/editline]
[QUOTE=zackyd;38401166]Not sure what the issue is for me but here is a snippet of the code for a custom shipment and what am I doing wrong?
[code]AddCustomShipment("Beretta M9" , {
model = "models/weapons/b_92f.mdl",
entity = "weapon_fas_m9",
price = 275,
amount = 10,
seperate = true,
pricesep = 0,
noship = false,
allowed = {TEAM_GUN]
})[/code][/QUOTE]
Your space after baretta m9. Try this:
[CODE]
AddCustomShipment("Beretta M9", {
model = "models/weapons/b_92f.mdl",
entity = "weapon_fas_m9",
price = 275,
amount = 10,
seperate = true,
pricesep = 0,
noship = false,
allowed = {TEAM_GUN]
})
[/CODE]
I feel like an idiot for missing that D:
edit: still not showing up for gun dealer D:
I think i got the entities wrong
edit:
I broke something cause now jobs are not showing up D:
Anyone have a hitman addon or code? How can I make the mayor demoted on death (all of the older posts don't work for me)?
[QUOTE=Pon-3;38402242]Your space after baretta m9. Try this:
[CODE]
AddCustomShipment("Beretta M9", {
model = "models/weapons/b_92f.mdl",
entity = "weapon_fas_m9",
price = 275,
amount = 10,
seperate = true,
pricesep = 0,
noship = false,
allowed = {TEAM_GUN]
})
[/CODE][/QUOTE]
That really doesn't make any difference.
You can put as many spaces as you want, as long as they're not inside words.
The [i]actual[/i] problem is you put {TEAM_GUN] instead of {TEAM_GUN}
[QUOTE=Lexic;38406340]That really doesn't make any difference.
You can put as many spaces as you want, as long as they're not inside words.
The [i]actual[/i] problem is you put {TEAM_GUN] instead of {TEAM_GUN}[/QUOTE]
yea I seen that and fixed it, I had some gibberish in the middle of the original code that I didn't pick up on cause I thought it was the custom shipments causing it.
Whenever I add someone to vip in ulx and fadmin, they still cant become jobs like detective and swat leader.
I'm not sure if this is my end or not but if I have less than 9 non-admin classes, it starts adding ones that require you to be in another class to get to it.
Is my darkrp the only one that broke after the recent update on github?
Everytime I press F4 it fucks.
And when I print in chat, I get the normal printed chat message and a *DEAD* one. Like this:
CHAT:
-MS-: Hello
*DEAD* -MS-: Hello
How can I have the laws displayed on-screen like the agendas and/or have a command to see the laws.
[QUOTE=Pon-3;38439486]How can I have the laws displayed on-screen like the agendas and/or have a command to see the laws.[/QUOTE]
/placelaws
In chat
[QUOTE=ms333;38439691]/placelaws
In chat[/QUOTE]
Thanks, but no thanks. Law boards suck. No one reads them.
[QUOTE=Pon-3;38439701]Thanks, but no thanks. Law boards suck. No one reads them.[/QUOTE]
Ohh, I thought that was your problem:)
So you want the laws shown on in all players upper left corner like the agenda?
[QUOTE=ms333;38445723]Ohh, I thought that was your problem:)
So you want the laws shown on in all players upper left corner like the agenda?[/QUOTE]
That seems like the easiest way to do it.
ULX Works fine for me. However, it does cause a huge problem when I first start the server which means I have to change maps.
[QUOTE=Chizbang;38462888]ULX Works fine for me. However, it does cause a huge problem when I first start the server which means I have to change maps.[/QUOTE]
I got ULX to work. Now I am just worried about hitmen and laws.
I think DarkRP needs to be put down. It's suffered too much from mingebags, rdmers, 12 year olds, rule breakers and prop killers. Simply put, having DarkRP on top of the server list attracts new players, thus starting a cycle. They get warped thinking all RP is stashing money printers and shooting people in the face for no reason.
I bet i'll get boxes for this. :downs:
Different people like different things. Get over yourself.
I happen to think that people wishing to engage in hardcore text based roleplay should get the hell off a first person shooter game and dial into a MUD but you don't see me going into srs play2lose rp threads and telling them to die.
My DarkRP is screwed up. The guns are frozen in mid air. The money is frozen on the ground. And yes... I have cstrike installed. Is it the correct cstrike? I have orangebox/cstrike and inside it there are server.cfg, steam.inf, titles.txt, user.scr, motd.txt, itsitaly.wad and other things.
[QUOTE=FPtje;35568684]I've never heard anyone say that about sandbox, and sandbox has always been more popular than DarkRP. [/QUOTE]
I don't know if this is the case way back whenever, also sorry if necro posting
but I got on GM13 the other day [after not being on gmod for 7 months] and looked at the new GM13 server browser, there were like 1200 people on DarkRP on like 1000 servers, and only like 1000 people on sandbox........ idk
[img]http://anyup.me/v/7YIZGblhL[/img]
Sorry, you need to Log In to post a reply to this thread.