ok found how to fix in rathena rev f488861298d50afb41f8418700ae164e63bee070
Search this in mob.c :[code=auto:0]
// if none found, pick random position on map
if (x <= 0 || y <= 0 || map->getcell(m,x,y,CELL_CHKNOREACH))
[/code]
Then replace by this :[code=auto:0]
// if none found, pick random position on map
if (x <= 0 || x >= map->list[m].xs || y <= 0 || y >= map->list[m].ys)
[/code]
I move the isue to core. And wait a core dev to fix it in the sources.
This post has been edited by
Michieru
on Jan 22, 2014 14:44