.
3axap4eHko
@3axap4eHko
Posts made by 3axap4eHko
-
RE: lookForAtArea and lookForAt return different values at the same point
Game.rooms.E10N4.lookForAtArea(10,13,10,13) return all types of gameobjects at area and there are no swamps!
Game.rooms.E10N4.lookAt(10,13) return all types of gameobjects at point and there are no swamps!
Game.rooms.E10N4.lookForAt('terrain',10,13) return only terrains and there are no swamps!
Game.rooms.E10N4.lookForAtArea('terrain',10,13,10,13) return only terrains and there are swamp present!
Fix it please! -
RE: lookForAtArea and lookForAt return different values at the same point
heggico, you are wrong too! How you describe this?
JSON.stringify(Game.rooms.E10N4.lookAtArea(10,13,10,13))
{"10":{"13":[{"type":"terrain","terrain":"wall"}]}}
-
RE: lookForAtArea and lookForAt return different values at the same point
chris, instead of wall ramparts is a structure, but wall, plain and swamp is a terrain
-
RE: lookForAtArea and lookForAt return different values at the same point
[{"10":{"13":"swamp"}},"wall"]
-
RE: lookForAtArea and lookForAt return different values at the same point
JSON.stringify([ Game.rooms.E10N4.lookForAtArea('terrain',10,13,10,13), Game.rooms.E10N4.lookForAt('terrain',13,10) ])
Still not same
-
RE: lookForAtArea and lookForAt return different values at the same point
But lookAtArea and lookAt is ok
JSON.stringify([
Game.rooms.E10N4.lookAtArea(10,13,10,13),
Game.rooms.E10N4.lookAt(10,13)
])
[
{"10":{"13":[{"type":"terrain","terrain":"wall"}]}},
[{"type":"terrain","terrain":"plain"}]
]
-
lookForAtArea and lookForAt return different values at the same point
room E10N4
JSON.stringify([
Game.rooms.E10N4.lookForAtArea('terrain',10,13,10,13),
Game.rooms.E10N4.lookForAt('terrain',10,13)
])
[{"10":{"13":"swamp"}},"plain"] -
RE: All screps are died (they don't move,work and etc.)
But I don't receive any errors...
-
RE: All screps are died (they don't move,work and etc.)
Are you realy? Look at rooms E10N4, E8N3, E11N4 !!! And this is just a part of all picture...