• 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!

Add compendium of OT data to Resources page

swashed

Member
Joined
Jul 9, 2023
Messages
72
Reaction score
8
There is a lot of information/scripts/code that you can use on most OT. This data is transferrable and will make it easier to find solutions. See commonly used syntax functions, see item IDs, see commonly used CONST syntax.

Example:

A page that has RL tibia map coords for boats and carpet:

BOATPOS_THAIS = {x=32312, y=32211, z=6}
BOATPOS_CARLIN = {x=32387, y=31821, z=6}
BOATPOS_AB = {x=32733, y=31668, z=6}
BOATPOS_VENORE = {x=32954, y=32023, z=6}
BOATPOS_EDRON = {x=33175, y=31764, z=6}
BOATPOS_DARASHIA = {x=33290, y=32481, z=6}
BOATPOS_GHOSTSHIP = {x=33330, y=32172, z=5}
BOATPOS_ANKRAHMUN = {x=33091, y=32883, z=6}
BOATPOS_PORT = {x=32527, y=32784, z=6}
BOATPOS_CORMAYA = {x=33288, y=31956, z=6}
BOATPOS_EREMO = {x=33316, y=31883, z=7}
BOATPOS_ISLEOFKINGS = {x=32190, y=31957, z=6}
BOATPOS_TIBIA = {x=32205, y=31756, z=6}

FERRYPOS_SENJA = {x=32125, y=31666, z=7}
FERRYPOS_FOLDA = {x=32047, y=31581, z=7}
FERRYPOS_VEGA = {x=32025, y=31692, z=7}
FERRYPOS_TIBIA = {x=32231, y=31677, z=7}

STEAMPOS_CORMAYA = {x=33309, y=31989, z=15}
STEAMPOS_KAZORDOON = {x=32658, y=31957, z=15}

CARPETPOS_DARASHIA = {x=33269, y=32441, z=6}
CARPETPOS_EDRON = {x=33193, y=31784, z=3}
CARPETPOS_FEMOR = {x=32535, y=31837, z=4}

PORTPOS_CENTER = {x=32628, y=32771, z=7}
PORTPOS_EAST = {x=32679, y=32777, z=7}
PORTPOS_WEST = {x=32558, y=32780, z=7}
Post automatically merged:

Then a page for message status types:
MESSAGE_TYPES = {
["advance"] = MESSAGE_EVENT_ADVANCE,
["event"] = MESSAGE_EVENT_DEFAULT,
["white"] = MESSAGE_EVENT_DEFAULT,
["orange"] = MESSAGE_STATUS_CONSOLE_ORANGE,
["info"] = MESSAGE_INFO_DESCR,
["green"] = MESSAGE_INFO_DESCR,
["small"] = MESSAGE_STATUS_SMALL,
["blue"] = MESSAGE_STATUS_CONSOLE_BLUE,
["red"] = MESSAGE_STATUS_CONSOLE_RED,
["warning"] = MESSAGE_STATUS_WARNING,
["status"] = MESSAGE_STATUS_DEFAULT
}
Post automatically merged:

Link to RSA Generator: OTS RSA Generator (https://ots.me/rsa/)
 
Last edited:
yeah they leave it to users

 
Back
Top