SRCDS Steam group


Having issues with DarkRP
#1
Hello I decided I wanted to make a DarkRP server for Gmod and I'm having some troubles with it and decided to come here and see if anyone knows how to fix these problems. Alright lets get into the problems.

1. (KINDA FIXED) I don't get any of the special weapons that the classes get. Like the batons, Lockpicks, keys, pocket, etc... (new problem) Every class gets all the special stuff.

2. (FIXED) This isn't DarkRP that is causing this but I can't seem to make my account admin on my server. I went into the users.txt file and thought I had put it in correctly but apperently not because when I try to use a NewAdmin command it says I don't have the correct permissions. Here is what I have in the users.txt file

"Users"
{
//
// This is your users file
//
// You can use this file to add people as admins on your server
// Add them to the relevant section
//
// If you're a Lua coder you can add your own sections and use them
// in your script by doing pl:IsUserGroup( "admin" ) etc
//

"superadmin"
{
"nickqqqq1" "STEAM_0:0:19063006"
}

3. (FIXED) In game a message keeps popping up every few seconds or so saying: Counter Strike: Source is incorrectly installed! You need it for DarkRP to work!
Now I'm pretty sure I installed it correctly because I put the css folder I got from the hldsupdatetool into the orangebox folder. But apparently that isn't what fixes it.

4. I want to use the DrugzMod with my server and I was able to get the shipment and the model of the cocain in the game but when I tried to pick it up nothing happened.

5. (KINDA FIXED) I can't pick up any weapons. They just float in the air. (NEW PROBLEM) I can only use the guns from the original DarkRP mod. But I can't pick up the guns from the MadCow mod.

6. (FIXED) I can't bring up the inv from DerpInv.

7. When I go into my DerpInv inventory it doesn't show anything that I have picked up. But when I right click with my pockets it drops the last thing I picked up.

So far that is all the problems I am having. Please if you know the solution to one or all of these tell me, I would greatly appreciate it.
Reply
#2
1. Download the DarkRP SVN Correctly, don't download DarkRP from Garrysmod.org. (Trunk is http://darkrp.googlecode.com/svn/trunk/)

2. You don't use the default users file in garry's mod for admin while running DarkRP. DarkRP has it's own administration system.

Code:
FAdmin SetAccess <user/steamid> superadmin

3. You move the cstrike folder into the orangebox directory, not the css folder.

4. Check you have the latest version of Durgzmod, and that you've added all the custom shipments/entities into your addentities.lua file.

5. Refer to #3 (You must have Counter Strike installed properly to utilize DarkRP weapons.)

6. Most people just bind it to a key.

Code:
bind p "drp_showinv"
Reply
#3
(09-04-2012, 05:44 AM)hymsan Wrote:  1. Download the DarkRP SVN Correctly, don't download DarkRP from Garrysmod.org. (Trunk is http://darkrp.googlecode.com/svn/trunk/)

2. You don't use the default users file in garry's mod for admin while running DarkRP. DarkRP has it's own administration system.

Code:
FAdmin SetAccess <user/steamid> superadmin

3. You move the cstrike folder into the orangebox directory, not the css folder.

4. Check you have the latest version of Durgzmod, and that you've added all the custom shipments/entities into your addentities.lua file.

5. Refer to #3 (You must have Counter Strike installed properly to utilize DarkRP weapons.)

6. Most people just bind it to a key.

Code:
bind p "drp_showinv"

Thank you very much. Some of this helped me out, like #6, but I'm still having some trouble.

With #1 I still don't get any of the special stuff and I re-installed DarkRP (I was using SVN the whole time anyways) would any addons effect this? here is the ones I have in my addons folder:

aoc
Conna's Tools Pack
counter-strike
DarkRP Class Maker
day-of-defat
DerpRP Inv
diprip
DoorsTool
DrugzMod
dystopia
hl2_ep2
keypad
left4dead
left4dead2
NewAdmin
portal
Simple RP Prop Protection
tf2
toybox
WeightSTool
WireMod
zeno_clash
zps

Also please look back at the first post, I edited some of the problems.

Reply
#4
First of all, what is the point in using Simple RP Prop Protection when DarkRP has FPP built into it automatically. Secondly you shouldn't be using DerRP Inv since it's outdated and horrible. If someone wanted to they could mass duplicate items if they exploit the bug in the addon.

Thirdly, if you want a decent admin mod to use I would look into ULX/ULIB. This admin mod is very popular among DarkRP based servers. You can find the admin mod here; http://ulyssesmod.net/. I recommend download the latest SVN of both ULX and ULIB.

If you want durgzmod working you need to make proper shipments for the mod. You can work off my base code;

How it works: AddCustomShipment("Entity Name", "Entity Model", "entity", "Shipment Price", "Shipment Amount", "true/false - Specify whether you want it shipment only or to be sold as a single entity too", "Single Price", "true/false - specify whether to be /buy only", {team})
Code:
AddCustomShipment("Water", "models/drug_mod/the_bottle_of_water.mdl", "durgz_water", 0, 0, false, 0, false, {TEAM_DRUG})
AddCustomShipment("Cigarettes", "models/boxopencigshib.mdl", "durgz_cigarette", 0, 0, false, 0, false, {TEAM_DRUG})
AddCustomShipment("Beer", "models/drug_mod/alcohol_can.mdl", "durgz_alcohol", 0, 0, false, 0, false, {TEAM_DRUG})
AddCustomShipment("Weed", "models/katharsmodels/contraband/zak_wiet/zak_wiet.mdl", "durgz_weed", 0, 0, false, 0, false, {TEAM_DRUG})
AddCustomShipment("Heroine", "models/katharsmodels/syringe_out/syringe_out.mdl", "durgz_heroine", 0, 0, false, 0, false, {TEAM_DRUG})
AddCustomShipment("Aspirin", "models/jaanus/aspbtl.mdl", "durgz_aspirin", 0, 0, false, 0, false, {TEAM_DRUG})
AddCustomShipment("LSD", "models/smile/smile.mdl", "durgz_lsd", 0, 0, false, 0, false, {TEAM_DRUG})
AddCustomShipment("Mushroom", "models/ipha/mushroom_small.mdl", "durgz_mushroom", 0, 0, false, 0, false, {TEAM_DRUG})
AddCustomShipment("Cocaine", "models/cocn.mdl", "durgz_cocaine", 0, 0, false, 0, false, {TEAM_DRUG})

The entities right now have no shipment amount or prices specified, that you have to do yourself. This code is untested so I'm unsure if it will work or not, but it should.

I've also taken the time to do a quick drug dealer job to go with the entities.
Code:
TEAM_DRUG = AddExtraTeam("Drug Dealer", Color(255, 255, 255, 255), "models/player/eli.mdl", [[Specify your own class description]], {}, "drugdealer", 2, 45, 0, false)

The first code goes into your addentities.lua and the second code goes into your shared.lua.
Get free clan themes & templates @ Gamer Templates
Get free fast download @ DropBox
Reply
#5
My friend cant join my server for him it says 0/0 players and 2000 latency
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)