[QUOTE=darksoul69;23263970]Meh, still haven't heard back from [URL="http://www.facepunch.com/member.php?u=201608"]Drakehawke[/URL].[/QUOTE]
Britain ftw, and I was at a mates last night so I wasn't on, but I'm on mostly from now for the next 12-14 hours :P
I just converted his database for him, seems to have gone well :)
[QUOTE=darksoul69;23281488]I just converted his database for him, seems to have gone well :)[/QUOTE]
The conversion was fine (thanks =]), just now the MySQL servers fucking up, gonna try and sort it tomorrow.
If anyone else is having conversion problems just PM me your sv.db and I'll convert wallets, salaries, cvars and rpnames into MySQL for you.
Something appears to be wrong with the banning, I added a lot to the ban list but now it seems that I cannot ban more then 145 props for some reason, it just stops.
I can add more to the list and it works, but it does not seem to save what so ever.
Are you using SQLite or MySQL? It might be a limitation with one of the databases.
I have this same problem and Im using SQLite.
SQlite I believe
I just tested DarkRP on my Linux server. It seems to work fine.
Well, that's good to know if I switch my server to Linux.
[QUOTE=Dino Penis;23319886]I have this same problem and Im using SQLite. I added allot of props into the banned list (FPP) and I cannot ban more than 145 props.[/QUOTE]
Can somebody answer my question please? I really need to block some props that can crash my server.
[QUOTE=Dino Penis;23365145]Can somebody answer my question please? I really need to block some props that can crash my server.[/QUOTE]
Try using MySQL and let us know if the problem persists.
[QUOTE=Dino Penis;23365145]Can somebody answer my question please? I really need to block some props that can crash my server.[/QUOTE]
Are you getting any errors in the console when you attempt to save?
[QUOTE=darksoul69;23365839]Try using MySQL and let us know if the problem persists.[/QUOTE]
That won't help, FPP won't use MySQL if DarkRP is set to MySQL.
[QUOTE=FPtje;23375074]That won't help, FPP won't use MySQL if DarkRP is set to MySQL.[/QUOTE]
Ah, true. You should code that feature in.
Really...Really bugs me that I have to add over 900+ props one at a time in FPP... When I could just copy and paste it into a LUA file. Really irritates me.
[QUOTE=Kaleb;23376163]Really...Really bugs me that I have to add over 900+ props one at a time in FPP... When I could just copy and paste it into a LUA file. Really irritates me.[/QUOTE]
Save this in a Lua file on your client in garrysmod/lua/autorun, fill in your old banned props where it says and then do add_old_bannedprops in your client console in-game, should work if your a superadmin.
[lua]
if SERVER then return end
if CLIENT then
local oldbannedprops = { -- put all your old banned props here, separate with commas
"bannedprop1.mdl",
"bannedprop2.mdl",
"bannedprop3.mdl"
}
function AddOldBannedProps( player, command, args )
for i=1, #oldbannedprops do
local proptoblock = oldbannedprops[i]
RunConsoleCommand( "FPP_AddBlockedModel", proptoblock )
end
end
concommand.Add( "add_old_bannedprops", AddOldBannedProps )
end
[/lua]
[editline]11:45AM[/editline]
Not sure how ..stable that may be with 900+ models though, I dunno, would GMod be okay with running 900 console commands, interpreting them, and storing the data in the database, all at once?
Add a timer like this:
[lua]if SERVER then return end
if CLIENT then
local oldbannedprops = { -- put all your old banned props here, separate with commas
"bannedprop1.mdl",
"bannedprop2.mdl",
"bannedprop3.mdl"
}
function AddOldBannedProps( player, command, args )
for i=1, #oldbannedprops do
local proptoblock = oldbannedprops[i]
timer.Simple(0.1*i, RunConsoleCommand, "FPP_AddBlockedModel", proptoblock )
end
end
concommand.Add( "add_old_bannedprops", AddOldBannedProps )
end
[/lua]
Thanks a lot again for saving me time!
[QUOTE=FPtje;23380316]
Thanks a lot again for saving me time![/QUOTE]
No problem, I'm quite enjoying Lua xD
Gone for a week though, going on holiday =/
Have fun!
[QUOTE=FPtje;23382455]Have fun![/QUOTE]
I really won't, the only thing to do is walk the damned dog ¬.¬
[QUOTE=Drakehawke;23382262]No problem, I'm quite enjoying Lua xD
Gone for a week though, going on holiday =/[/QUOTE]
Enjoy your holiday!
Falco, i think you should really reconsider adding tool restriction based on jobs/teams/classes or whatchamacallit.
I think it would be a very usefull adition, and its something i already know quite a few server owner would like to be implemented.
[QUOTE=Drakehawke;23382913]I really won't, the only thing to do is walk the damned dog ¬.¬[/QUOTE]
Explain please?
[QUOTE=elowin;23383014]Falco, i think you should really reconsider adding tool restriction based on jobs/teams/classes or whatchamacallit.
I think it would be a very usefull adition, and its something i already know quite a few server owner would like to be implemented.
Explain please?[/QUOTE]
This feature already exists in FPP, in the edit tool restrictions panel it either lets you restrict by admin/superadmin or by team/job.
And im going to a place in the middle of the countryside with my parents, and pretty much all we do is walk the dog for the week, anyway, moving on from my holiday plans.
[QUOTE=Drakehawke;23383434]This feature already exists in FPP, in the edit tool restrictions panel it either lets you restrict by admin/superadmin or by team/job.
And im going to a place in the middle of the countryside with my parents, and pretty much all we do is walk the dog for the week, anyway, moving on from my holiday plans.[/QUOTE]
...How many years have i been living under my goddamn rock by now?
One thing I have a problem with is the prop whitelist doesn't let certain tools work like rope because it is seeing if the model is on the whitelist when I don't even think there is a model for rope
-snip-
Some 2 guys has come on the server for the first time and started dropping millions of money to people,is this some sort of a new exploit?
07/16/10 22:40:23 Greepfruuy (STEAM_0:0:20052515): /dropmoney 10000
07/16/10 22:40:24 Greepfruuy (STEAM_0:0:20052515): /dropmoney 10000
07/16/10 22:40:24 Greepfruuy (STEAM_0:0:20052515): /dropmoney 10000
07/16/10 22:40:25 Greepfruuy (STEAM_0:0:20052515): /dropmoney 10000
07/16/10 22:40:26 Greepfruuy (STEAM_0:0:20052515): /dropmoney 10000
07/16/10 23:03:50 -{An}-dockedobject-{LDR}- â„–DË (STEAM_0:1:24513861): /dropmoney 30000000
07/16/10 23:03:51 -{An}-dockedobject-{LDR}- â„–DË (STEAM_0:1:24513861): /dropmoney 30000000
07/16/10 23:03:52 -{An}-dockedobject-{LDR}- â„–DË (STEAM_0:1:24513861): /dropmoney 30000000
07/16/10 23:03:53 -{An}-dockedobject-{LDR}- â„–DË (STEAM_0:1:24513861): /dropmoney 30000000
07/16/10 23:03:56 -{An}-dockedobject-{LDR}- â„–DË (STEAM_0:1:24513861): /dropmoney 30000000
07/16/10 23:03:57 -{An}-dockedobject-{LDR}- â„–DË (STEAM_0:1:24513861): /dropmoney 30000000
I think it might be something todo with owning a door because both of the players did this before spamming the money:
07/16/10 22:38:54 Greepfruuy (STEAM_0:0:20052515): /toggleown
07/16/10 22:38:55 Greepfruuy (STEAM_0:0:20052515): /toggleown
07/16/10 22:38:58 Greepfruuy (STEAM_0:0:20052515): /toggleown
07/16/10 22:39:12 Greepfruuy (STEAM_0:0:20052515): /toggleown
This happened on RP_Downtown_v2
Sorry don't have anymore information.
Not an exploit I have ever heard of...
Maybe an admin is setting people's money.
[QUOTE=FPtje;23428376]Not an exploit I have ever heard of...
Maybe an admin is setting people's money.[/QUOTE]
I am sure that none of the admins have set the money and the guy that did it said he was going to do it to other servers too.
Sorry, you need to Log In to post a reply to this thread.