Hello....I would need some help in finding if there's any character on a map id like: (this is for LOTF 5165)
But I don't think this works so I want to know how I find out if the map contains at least 1 character...
Thanks :)
Code:
bool CharOnMap(MapId)
{
Character C;
C = Game.World.H_Chars[MapId]
if (C!=null)
return true;
else return false;
}
Thanks :)