• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Help summons!!!!!!!

samuelsami

New Member
Joined
Oct 27, 2010
Messages
77
Reaction score
1
I Can Change The Sqm In What The Summon Follow My?


Example: the summon follow my in 2 Sqm.....
 
monster.cpp
Code:
void Monster::getPathSearchParams(const Creature* creature, FindPathParams& fpp) const
{
	Creature::getPathSearchParams(creature, fpp);
	fpp.minTargetDist = 1;
	fpp.maxTargetDist = mType->targetDistance;
	if(isSummon())
	{
		if(getMaster() == creature)
		{
			fpp.maxTargetDist = [B][COLOR="red"]2[/COLOR][/B];
			fpp.fullPathSearch = true;
		}
 
where i copy this?

i'm noob u can help my please? where i copy this...

MEN i copy this ok now.... i summon this in 1 sqm and the summon run 2 sqm -.- help my i need what the summon ever are in 1 sqm and follow my in 1sqm....
 
Last edited by a moderator:
men..... i need what the summon follow my to 1 sqm..... this script summon the monster in 1 sqm..... and follow my in 2 sqm.... please help my......
 
Back
Top