Page 1 of 2
fieldsofvalor fov
Posted: Wed Nov 07, 2012 8:48 am
by mvd1987
hey everybody
does anybody know if it possible to change the settings on the fields of valor so people can do the pages(and they can finish the pages) even if they dont get the exp cause there level is to low??
just want people on the server to do all the pages even if they are to low level.
and do i need to make the changes only in C:\dsp\scripts\globals\fieldsofvalor.lua ??
and what do i need to change??
couldnt find any info on this on the forum.
thanx already if somebody knows what i mean and can help me out
greetings michael
Re: fieldsofvalor fov
Posted: Wed Nov 07, 2012 9:42 am
by bluekirby0
You should check the common locations for configuration settings before looking at modifying your code. Most of the config stuff you will want can be found in either conf/map_darkstar.conf or in scripts/globals/settings.lua. In this case the setting you are looking for is in the latter.
Re: fieldsofvalor fov
Posted: Wed Nov 07, 2012 10:54 am
by mvd1987
what do you mean by the latter??
cant find the settings i need in conf/map_darkstar.conf or in scripts/globals/settings.lua
can anybody tell me where and what to change so players can do the pages of the fov even if they have a to high level to complete the pages??
thanx already
Re: fieldsofvalor fov
Posted: Mon Nov 12, 2012 1:02 pm
by bluekirby0
http://code.google.com/p/onetimexi/sour ... ngs.lua#95
Code: Select all
LOW_LEVEL_REGIME = 0; --Allow people to kill regime targets even if they give no exp, allowing people to farm regime targets at 75 in low level areas.
P.S. I don't answer questions like this via PM, so please keep them on the regular forums only.
Re: fieldsofvalor fov
Posted: Sun Mar 03, 2013 6:33 pm
by Mercdragon
does this still work? i have tried 0 and 1 neither works to allow this. any help would be good. Does the settings.lua file still work. many options are not working.
Re: fieldsofvalor fov
Posted: Tue Mar 05, 2013 6:54 am
by whasf
Did you restart the server after changing that setting? It's read once, on startup.
Re: fieldsofvalor fov
Posted: Wed Mar 06, 2013 2:40 am
by Mercdragon
Yes I do. I have tried to set it to 1 reset nothing. then set to 0 reset same thing nothing. Anyhelp on how to make this work? I have looked into the FOV.lua cant find anything to change it. I dont know how to do it but if i learn i could know how to fix other stuff.
Re: fieldsofvalor fov
Posted: Wed Mar 06, 2013 4:17 am
by bluekirby0
I think a recent revamp to the FoV code has essentially disabled that option. It will probably need to be moved to the game server configuration.
Re: fieldsofvalor fov
Posted: Sat Mar 09, 2013 10:51 am
by compmike19
510 + -- Need to add difference because a lvl1 can xp with a level 75 at ro'maeve
511 + local difference = math.abs(mob:getMainLvl() - killer:getMainLvl());
512 +
513 + if(partyType < 2 and mob:checkBaseExp() and killer:checkDistance(mob) < 100 and difference <= 15) then
Get rid of the difference part
Re: fieldsofvalor fov
Posted: Sat Mar 09, 2013 7:36 pm
by Mercdragon
sorry i dont completely understand what you are telling me to get rid of.