All you have to do is creating a new tile so you can place items on it later (including grounds).Did you modify the Game.createItem function/sources?
By default you can't create an item (the walkable id 460) if theres no floor already
// Game.createTile(x, y, z[, isDynamic = false])
// Game.createTile(position[, isDynamic = false])
doAreaCombatHealth(0, 0, self, 0, 0, 0, CONST_ME_NONE)
There's no createTile in OTHire, but the doAreaCombatHealth seems to be bugged too and it works.All you have to do is creating a new tile so you can place items on it later (including grounds).
Code:// Game.createTile(x, y, z[, isDynamic = false]) // Game.createTile(position[, isDynamic = false])
in 0.4 it was possible too, by a little glitch (which probably still works because @MatheusMkalo used it in this system)
Code:doAreaCombatHealth(0, 0, self, 0, 0, 0, CONST_ME_NONE)
Here you go:There's no createTile in OTHire(...)
function Game.createTile(pos)
doAreaCombatHealth(0,0,pos,0,0,0,255)
return true
end
lolHere you go:
Code:function Game.createTile(pos) doAreaCombatHealth(0,0,pos,0,0,0,255) return true end
This actually adds another layer of difficulty to pvp and makes it kinda interesting, i made this so instead of outfits you use a broom with duration, dragons can fly and you can make raids in the air, etcRIP PvP, Otherwise a cool system.
![]()
Im also trying that, the script creates only one tile and when you have higher speed you walk stucking, stoping:@Mkalo is possible create tile id 460 in area 3x3? if yes, u can help me?
--- a/a/creatureevent.cpp
+++ b/b/creatureevent.cpp
its useless stuff, dont add it.Hello,
Applying patch Flying patch.
Im trying to find:in creatureevent.cpp, but it is not there...Code:--- a/a/creatureevent.cpp
View attachment 42879
and i dont know where to set it:Code:+++ b/b/creatureevent.cpp
How to do that ?
Im using this server.
okay turns out its just my local connection xdin 1.3 you are unable to move, you can go up and down but not walk around, no errors.
local creatreFlyFloorHelperData = {
{x = 0, y = 0},
{x = -1, y = -1},
{x = -1, y = 0},
{x = -1, y = 1},
{x = 0, y = 1},
{x = 1, y = 1},
{x = 1, y = 0},
{x = 1, y = -1},
{x = 0, y = -1},
}
function createFlyFloor(pos)
for i,deltaPos in ipairs(creatreFlyFloorHelperData) do
local currPos = {x = pos.x + deltaPos.x, y = pos.y + deltaPos.y, z = pos.z}
local toTile = Tile(currPos)
if (not toTile) or (not toTile:getItems()) or (not toTile:getGround()) then
doAreaCombatHealth(0, 0, currPos, 0, 0, 0, 0)
Game.createItem(ID_FLYING_GROUND, 1, currPos)
end
end
end
function removeFlyFloor(pos)
for i,deltaPos in ipairs(creatreFlyFloorHelperData) do
local currPos = {x = pos.x + deltaPos.x, y = pos.y + deltaPos.y, z = pos.z}
local fromTile = Tile(currPos)
local fromFlyItem = fromTile:getItemById(ID_FLYING_GROUND)
if fromFlyItem then
fromFlyItem:remove()
end
end
end
now i can't walkYou can use that piece of code:
LUA:local creatreFlyFloorHelperData = { {x = 0, y = 0}, {x = -1, y = -1}, {x = -1, y = 0}, {x = -1, y = 1}, {x = 0, y = 1}, {x = 1, y = 1}, {x = 1, y = 0}, {x = 1, y = -1}, {x = 0, y = -1}, } function createFlyFloor(pos) for i,deltaPos in ipairs(creatreFlyFloorHelperData) do local currPos = {x = pos.x + deltaPos.x, y = pos.y + deltaPos.y, z = pos.z} local toTile = Tile(currPos) if (not toTile) or (not toTile:getItems()) or (not toTile:getGround()) then doAreaCombatHealth(0, 0, currPos, 0, 0, 0, 0) Game.createItem(ID_FLYING_GROUND, 1, currPos) end end end function removeFlyFloor(pos) for i,deltaPos in ipairs(creatreFlyFloorHelperData) do local currPos = {x = pos.x + deltaPos.x, y = pos.y + deltaPos.y, z = pos.z} local fromTile = Tile(currPos) local fromFlyItem = fromTile:getItemById(ID_FLYING_GROUND) if fromFlyItem then fromFlyItem:remove() end end end
Lua Script Error: [CreatureScript Interface]
data/creaturescripts/scripts/flyevent.lua:onMove
data/creaturescripts/scripts/flyevent.lua:13: attempt to call method 'createFlyFloor' (a nil value)
stack traceback:
[C]: in function 'createFlyFloor'
data/creaturescripts/scripts/flyevent.lua:13: in function <data/creaturescripts/scripts/flyevent.lua:2>
server says: attempt to call method 'createFlyFloor' (a nil value)now i can't walk
TFS 1.3
Code:Lua Script Error: [CreatureScript Interface] data/creaturescripts/scripts/flyevent.lua:onMove data/creaturescripts/scripts/flyevent.lua:13: attempt to call method 'createFlyFloor' (a nil value) stack traceback: [C]: in function 'createFlyFloor' data/creaturescripts/scripts/flyevent.lua:13: in function <data/creaturescripts/scripts/flyevent.lua:2>
server says: attempt to call method 'createFlyFloor' (a nil value)
I can not help you without yours script - looks, that your script can not see createFlyFloor function