• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

MoveEvent "real tibia svargrond arena" for TFS 0.3.4 ver. 3

Status
Not open for further replies.
You got some errors in server console, or any message in game console? Or nothing happens? ;d
 
Idk. sorry, it's hard to read Gesior's code >_>, maybe after 24th i'll write my own arena ;p
 
Idk. sorry, it's hard to read Gesior's code >_>, maybe after 24th i'll write my own arena ;p

i get this error
Code:
[19/08/2009 05:16:47] Lua Script Error: [MoveEvents Interface] 
[19/08/2009 05:16:47] data/movements/scripts/didarenalevel.lua:onStepIn

[19/08/2009 05:16:47] attempt to index a nil value
[19/08/2009 05:16:47] stack traceback:
[19/08/2009 05:16:47] 	[C]: in function 'doTeleportThing'
[19/08/2009 05:16:47] 	data/movements/scripts/didarenalevel.lua:9: in function <data/movements/scripts/didarenalevel.lua:1>
 
9th line is this:
Code:
doTeleportThing(cid, arenaKickPosition, TRUE)
Right?
So you haven't defined arenaKickPosition ;p

Or if you use code i give before try to fill x,y,z don't leave them empty ^^
 
only have this errore left :S
Code:
[19/08/2009 06:59:38] Lua Script Error: [MoveEvents Interface] 
[19/08/2009 06:59:38] data/movements/scripts/arenaroom.lua:onStepIn

[19/08/2009 06:59:38] data/movements/scripts/arenaroom.lua:16: attempt to compare number with string
[19/08/2009 06:59:38] stack traceback:
[19/08/2009 06:59:38] 	data/movements/scripts/arenaroom.lua:16: in function <data/movements/scripts/arenaroom.lua:1>
 
Chipsen maybe try:
Code:
if monster_uid > 0 then

To:
Code:
if (monster_uid ~= false) then
 
.. when i enter the last tp server crash .. ?
error :
b1jsy8.png
 
Chipsen, remove the destination from this teleport on the map in properties of teleport. It crashes because of that.
__________________
klekSu.png

You are welcome on kleksoria.com!
Please visit new open tibia forum with it's own ots list. otservers.net!
 
Last edited:
What about monsters?
__________________
klekSu.png

You are welcome on kleksoria.com!
Please visit new open tibia forum with it's own ots list. otservers.net!
 
Last edited:
Everything works perfect for me, except last teleport(10th room). When I kill the monster and enter tp, it says that I haven't killed it "KIll the monsters first"
That sucks;/
 
@up check your /data/lib/arena.lua if you have name of the monster in the script.
__________________
klekSu.png

You are welcome on kleksoria.com!
Please visit new open tibia forum with it's own ots list. otservers.net!
 
Last edited:
You mean this? Edit /data/monsters/arena/greenhorn? Or changing the monsters so you don't have shitty monsters on the first arena? If so, check /data/lib/arena.lua, there are the names. Just change them.
__________________
klekSu.png

You are welcome on kleksoria.com!
Please visit new open tibia forum with it's own ots list. otservers.net!
 
Last edited:
You mean this? Edit /data/monsters/arena/greenhorn? Or changing the monsters so you don't have shitty monsters on the first arena? If so, check /data/lib/arena.lua, there are the names. Just change them.
are there just to change the name ? to demon not edit any number or ide ?
 
Go to ./movements/scripts/didarenalevel.lua and change:
Code:
doTeleportThing(cid, arenaKickPosition, TRUE)
To:
Code:
local yourPositions = {x=,y=,z=} -- reward room
doTeleportThing(cid, yourPositions, TRUE)

Here is the answer, lol :p ! Thank you dude, now it's working perfect on tfs 0.3.5
 
Status
Not open for further replies.
Back
Top