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

Search results

  1. Nilithan

    Gesior Errors and a Question

    Add this to your database. CREATE TABLE `bans` ( `id` INT UNSIGNED NOT NULL auto_increment, `type` TINYINT(1) NOT NULL COMMENT '1 - ip banishment, 2 - namelock, 3 - account banishment, 4 - notation, 5 - deletion', `value` INT UNSIGNED NOT NULL COMMENT 'ip address (integer), player guid...
  2. Nilithan

    Help with easy script

    local before, after = {x = 738, y = 700, z = 7}, {x = 743, y = 696, z = 7} function onUse(cid, item, fromPosition, itemEx, toPosition) if item.itemid == 1945 then local pid = getTopCreature(before).uid if isPlayer(pid) then doTeleportThing(pid, after, false) doSendMagicEffect(after...
Back
Top