Explanation
const MAPDATA_FLAG_NONE := 0x0000; // Nothing
const MAPDATA_FLAG_MOVELAND := 0x0001; // Move Land
const MAPDATA_FLAG_MOVESEA := 0x0002; // Move Sea
const MAPDATA_FLAG_BLOCKSIGHT := 0x0004; // Block Sight
const MAPDATA_FLAG_OVERFLIGHT := 0x0008; // Over Flight
const MAPDATA_FLAG_ALLOWDROPON := 0x0010; // Allow DropOn
const MAPDATA_FLAG_GRADUAL := 0x0020; // Gradual
const MAPDATA_FLAG_BLOCKING := 0x0040; // Blocking
const MAPDATA_FLAG_MORE_SOLIDS := 0x0080; // List more Solids
GetStandingLayers
GetStandingLayers
I sincerely don't recall anymore what all these flags in GetStandingLayers means... could someone enlighten me?
Re: GetStandingLayers
Seems I'm not the only one with bad memory 
Re: GetStandingLayers
this is the exact layers. if you stand in 0x0001 and pass in GetStandingLayers() 0x0002 then { } because of water isnt walkable
Re: GetStandingLayers
Ok, but what about the others?
Re: GetStandingLayers
const MAPDATA_FLAG_NONE <---- Nothing
const MAPDATA_FLAG_MOVELAND <----- Everything that moves on land can move on this
const MAPDATA_FLAG_MOVESEA <------ Everything that moves on seacan move on this
const MAPDATA_FLAG_BLOCKSIGHT <----- As the name say blocks LOS
const MAPDATA_FLAG_OVERFLIGHT := 0x0008; <----- For SA Gargoyle flying to mark the tiles that can fly on
const MAPDATA_FLAG_ALLOWDROPON := 0x0010; <------- As name say allows item drops on that tile
const MAPDATA_FLAG_GRADUAL := 0x0020; <---- No idea sorry
const MAPDATA_FLAG_BLOCKING := 0x0040; <------- Blocks Movement
const MAPDATA_FLAG_MORE_SOLIDS := 0x0080; <------- No idea sorry
const MAPDATA_FLAG_MOVELAND <----- Everything that moves on land can move on this
const MAPDATA_FLAG_MOVESEA <------ Everything that moves on seacan move on this
const MAPDATA_FLAG_BLOCKSIGHT <----- As the name say blocks LOS
const MAPDATA_FLAG_OVERFLIGHT := 0x0008; <----- For SA Gargoyle flying to mark the tiles that can fly on
const MAPDATA_FLAG_ALLOWDROPON := 0x0010; <------- As name say allows item drops on that tile
const MAPDATA_FLAG_GRADUAL := 0x0020; <---- No idea sorry
const MAPDATA_FLAG_BLOCKING := 0x0040; <------- Blocks Movement
const MAPDATA_FLAG_MORE_SOLIDS := 0x0080; <------- No idea sorry
Re: GetStandingLayers
0xffffffff <---- All

Re: GetStandingLayers
Thank you very much guys.