Mogen Fields Neep Help

mStation

Golden Oldie
Golden Oldie
Oct 29, 2003
2,042
69
255
♫♪♫ ♦♥♠♣ ♀♂♀
Hello, sorry guys but it past soooo much time that i forgot this..

i know that in the mogen you get this fields:
;Map X Y MobName Spread Amount Time

but i have seen in different sections this:
D011 200 200 CaveBat 200 20 3 100

where D011 is map, 200 is X, 200 is Y, CaveBat is ovviously the mob and 200 is the spread and 20 is the ammount and 3 is the minutes to respawn but what is the final 100 at the end??

this happenes in lots of mobs in the mogen and i don't remember what it is.. i forgot :S
 

mStation

Golden Oldie
Golden Oldie
Oct 29, 2003
2,042
69
255
♫♪♫ ♦♥♠♣ ♀♂♀
actually in my mogen i get mobs with it and mobs without.. like these:
D022 250 250 FlamingWooma 250 30 3
D022 200 200 WoomaGuardian 200 4 60
D022 250 250 CaveBat 250 5 3 100
D022 250 250 CaveBat 250 40 3 100

and sometimes its set 100, 5, 50 or other values and i can't remember what is used for
 
Upvote 0

mStation

Golden Oldie
Golden Oldie
Oct 29, 2003
2,042
69
255
♫♪♫ ♦♥♠♣ ♀♂♀
MonGenInfo.sMapName := Trim(Query.FieldByName('FLD_MAPNAME').AsString);
MonGenInfo.nX := Query.FieldByName('FLD_X').AsInteger;
MonGenInfo.nY := Query.FieldByName('FLD_Y').AsInteger;
MonGenInfo.sMonName := Trim(Query.FieldByName('FLD_MONNAME').AsString);
MonGenInfo.nRange := Query.FieldByName('FLD_RANGE').AsInteger;
MonGenInfo.nCount := Query.FieldByName('FLD_COUNT').AsInteger;
MonGenInfo.dwZenTime := Query.FieldByName('FLD_GENTIME').AsInteger * 60 * 1000;
MonGenInfo.nMissionGenRate := Query.FieldByName('FLD_SMALLGENRATE').AsInteger;

i have just read this into the server source so this field is called missiongenrate but i still didn't understand what it is used for >.<
 
Upvote 0

Chris22

LOMCN Veteran
Veteran
Jun 10, 2009
372
1
45
MonGenInfo.sMapName := Trim(Query.FieldByName('FLD_MAPNAME').AsString);
MonGenInfo.nX := Query.FieldByName('FLD_X').AsInteger;
MonGenInfo.nY := Query.FieldByName('FLD_Y').AsInteger;
MonGenInfo.sMonName := Trim(Query.FieldByName('FLD_MONNAME').AsString);
MonGenInfo.nRange := Query.FieldByName('FLD_RANGE').AsInteger;
MonGenInfo.nCount := Query.FieldByName('FLD_COUNT').AsInteger;
MonGenInfo.dwZenTime := Query.FieldByName('FLD_GENTIME').AsInteger * 60 * 1000;
MonGenInfo.nMissionGenRate := Query.FieldByName('FLD_SMALLGENRATE').AsInteger;

i have just read this into the server source so this field is called missiongenrate but i still didn't understand what it is used for >.<

You can spawn mobs and give them a mission to go to a set coord, sounds like it mite be something to do with that, ie spawn mobs to invade at a set time mabye, worth testing it unless someone else knows what it is.
 
Upvote 0