| Blockland Forums > Help |
| City Rp Help Needed |
| << < (4/4) |
| BlydeBadger:
I believe this so called "Ace Frog' is maybe about 9 or 7 |
| Hellriot:
I know this topic was made quite some time ago, but the guy still might need help. =\ To add more jobs to the City RP, you have to go to your blockland main folder. Open up config/server/IbanMod/CityRPG/Prefs.cs It would say stuff like: --- Code: ---$CityRP::jobs = 3; $CityRP::jobs::bounty::Claimer1 = 0; $CityRP::jobs::bounty::Claimer2 = 0; $CityRP::jobs::bounty::Claimer3 = 1; $CityRP::jobs::canPardon1 = 0; $CityRP::jobs::canPardon2 = 0; $CityRP::jobs::canPardon3 = 0; --- End code --- There's actually 7, but I'm just giving an example of how this works. Your going to add another job to the script by simply doing this: --- Code: ---$CityRP::jobs = 4; $CityRP::jobs::bounty::Claimer1 = 0; $CityRP::jobs::bounty::Claimer2 = 0; $CityRP::jobs::bounty::Claimer3 = 1; $CityRP::jobs::bounty::Claimer4 = 1; $CityRP::jobs::canPardon1 = 0; $CityRP::jobs::canPardon2 = 0; $CityRP::jobs::canPardon3 = 0; $CityRP::jobs::canPardon4 = 0; --- End code --- What I did was copy and paste a line from one of the other jobs, and change the number. Also, I changed the amount of jobs from 3, to 4. Also, don't forget to edit the values to make your jobs do different things. For example: --- Code: ---$CityRP::jobs::canPardon3 = 1; $CityRP::jobs::canPardon4 = 0; --- End code --- Job 3 can pardon people because the value is set to 1. However, job 4 cannot because the value is 0. Basically, 1 means yes, and 0 means no. Anything after the = sign, is a value. Now to tell you what they do. This tells the game how many jobs you have created. I have 8 on my server. --- Code: ---$CityRP::jobs = 8; --- End code --- This one tells weather the job can claim a bounty and not get demerits. --- Code: ---$CityRP::jobs::bounty::Claimer1 = 0; --- End code --- This one is for the jobs which can offer bounties without getting demerits. --- Code: ---$CityRP::jobs::bounty::Offerer1 = 0; --- End code --- This is what the "Official" job uses. If a job has this enabled, they can pardon people. --- Code: ---$CityRP::jobs::canPardon1 = 0; --- End code --- No jobs currently use this. I think it may be for drug dealing or something. --- Code: ---$CityRP::jobs::drugPusher1 = 0; --- End code --- This is a description for your job. --- Code: ---$CityRP::jobs::helpline1 = "\c6Civilians are the basic option. They have no perks."; --- End code --- This doesn't really do anything, its pointless to bother editing it. --- Code: ---$CityRP::jobs::hideJobName1 = 0; --- End code --- This is how much it costs to do this job. This one is from Civilian, so it costs nothing. --- Code: ---$CityRP::jobs::initialInvestment1 = 0; --- End code --- This is for weapon spawning. Its what shop keepers use. --- Code: ---$CityRP::jobs::items1 = 0; --- End code --- This shouldn't be added to anything except laborer itself. --- Code: ---$CityRP::jobs::labor1 = 0; --- End code --- This is used for Police Men and Bounty Hunters. It just tells if your part of the law. I also assume its used to make you get demoted if you get arrested. --- Code: ---$CityRP::jobs::law1 = 0; --- End code --- This is the name of the job. --- Code: ---$CityRP::jobs::name1 = "Civilian"; --- End code --- This is how much income you get from the job. --- Code: ---$CityRP::jobs::pay1 = 25; --- End code --- Gives you the ability to pick pocket people. --- Code: ---$CityRP::jobs::thief1 = 0; --- End code --- Edit this to make people with certain jobs spawn with different items. --- Code: ---$CityRP::jobs::tools1 = ""; --- End code --- That's basically all you need to know. If you still need help, just send me a message. |
| Firestorm5000:
--- Quote from: Pah1023 on June 04, 2009, 09:13:22 PM ---Learn proper English and get a life. --- End quote --- Everybody be nice :panda: |
| Navigation |
| Message Index |
| Previous page |