Zisly
Intermediate OT User
- Joined
- Jun 9, 2008
- Messages
- 7,338
- Reaction score
- 120
Some days ago, while talking about botting and OT, something hit me: map offset. Bots use waypoints, bot waypoints used on Tibia's official servers are supposed to work on servers using the map as well, from what I've heard. Why not add random offset at startup of the server? this should make all waypoints already made useless. The problem of someone simply making new waypoints exists but people are lazy, so this shouldn't be any problem. You could also add this map offset every x time but I don't know how heavy this would be on the server, so on startup is probably prefered.
The offset explained with an image:
LUA scripts, what about them? If a function is added "realPos(x,y,z)" it could be used to calculate the new(real) positions. Maybe just 2 contants? OFFSET_X, OFFSET_Y? so like this:
Sorry for messy post. I haven't given this too much thought really. I'm hoping for some discussions or something
The offset explained with an image:
LUA scripts, what about them? If a function is added "realPos(x,y,z)" it could be used to calculate the new(real) positions. Maybe just 2 contants? OFFSET_X, OFFSET_Y? so like this:
Code:
local posX = 1000 + OFFSET_X
local posY = 1000 + OFFSET_Y
Sorry for messy post. I haven't given this too much thought really. I'm hoping for some discussions or something