Author Topic: [2238] couple of quick question  (Read 3062 times)

[2238] couple of quick question
« on: July 11, 2013, 07:23:33 am »
Alright I need to know how to lower the Town control player need and gear need, and then also I need to know what lines to delete to make the brahmin stop trying to ram me, and last but somehow not least how to increase there shit rate it seems like there are two different places to do that.

Re: [2238] couple of quick question
« Reply #1 on: July 11, 2013, 09:12:48 am »
Quote
I need to know how to lower the Town control player need


See towns.fos lines 93-114 for Modoc, try changing
Code: [Select]
             
.SetNearbyMemberRequirement(4)
.SetTotalMemberRequirement(5)
.SetInfluenceMemberRequirement(4)
to
Code: [Select]
             
.SetNearbyMemberRequirement(1)
.SetTotalMemberRequirement(1)
.SetInfluenceMemberRequirement(1)

repeat with other towns.

Quote
and gear need

town.fos, lines 1173-1186
if you don't have an idea what's doing what there, comment these lines and put "return true;"

I haven't tried it myself but I think it should work.

Hope it helps,
Kilgore

Offline wladimiiir

  • Rotator
  • Independent FOnline developer
Re: [2238] couple of quick question
« Reply #2 on: July 11, 2013, 10:06:01 am »
...and then also I need to know what lines to delete to make the brahmin stop trying to ram me...
In item_brahmin_dung.fos delete/comment out lines 92-102.


...and last but somehow not least how to increase there shit rate it seems like there are two different places to do that.
In all_brahmin.fos on line 34 there is variable Shitrate set to 666 (spooky :o). It says what is the chance of shitting when Idle event is called on brahmin. Currently there is 1:666 chance that brahmin will shit on Idle event (config.fos::__CritterIdleTick = 10000; => every 10 seconds), so lower it to increase chance.


Re: [2238] couple of quick question
« Reply #3 on: July 11, 2013, 11:00:10 am »
I have a problem I think as I have talked to Marcus no town control dialog. Then I talked to Harold just to check if it was only Marcus or something for town control dialog and it isn't appearing guess the town wasn't big enough...for the one of us.

Re: [2238] couple of quick question
« Reply #4 on: July 11, 2013, 11:22:27 am »
Dialogue option will not show if you're not in faction. Make the faction first, then try capturing. I checked it and it's working.

Re: [2238] couple of quick question
« Reply #5 on: July 11, 2013, 11:25:30 am »
Thank you completely forgot about that will do.

Re: [2238] couple of quick question
« Reply #6 on: July 11, 2013, 12:03:10 pm »
Also another one I have figured out how to change the exp rate on shoveling crap but I've checked the Brahmin herdsman and traders and can't find where to change the cap rate at any help would be appreciated.

Offline wladimiiir

  • Rotator
  • Independent FOnline developer
Re: [2238] couple of quick question
« Reply #7 on: July 11, 2013, 12:34:17 pm »
In all_brahmin_herdsman.fodlg you can find line 25:
Code: [Select]
0 6010 R _script brahmin_trader@r_CleaningPayment 1 5 @where 5 (at the end of line/first script argument) is the amount of caps for 1 dung (or shit). Change it to what suits you.

You can also modify it using DialogEditor, but I think this is faster. ;)

Re: [2238] couple of quick question
« Reply #8 on: July 11, 2013, 12:42:13 pm »
Thanks friend that worked  ;D