changeMap
map:changeMap(Direction)Nom
Type
Description
-- Aller vers le nord
map:changeMap("top")
-- Parcourir les 4 directions
local directions = {"top", "right", "bottom", "left"}
for _, dir in ipairs(directions) do
map:changeMap(dir)
global:delay(1000)
endMis à jour

