• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. Teckman

    Mail + Bank system for 0.2.14

    And what's the difference between db.executeQuery and db.query?
  2. Teckman

    Action Skill Items!

    local skills = { [4869] = SKILL_AXE, [4863] = SKILL_DISTANCE, [8304] = SKILL__MAGLEVEL, [4865] = SKILL_SHIELD } function onUse(cid, item, fromPosition, itemEx, toPosition) doPlayerAddSkillTry(cid, skills[item.itemid], 88000) doRemoveItem(item.uid) doSendMagicEffect(fromPosition...
  3. Teckman

    [Giveaway] Full rpg server, Inclouding map otc etc.

    Too bad it's an rpg project. :(
  4. Teckman

    Action Magic level scroll

    rand = math.random(1,1) if rand == 1 then this part rocks! :D
  5. Teckman

    What Server Do You Play!

    I play Hall of the Champions all the day, though it's not really online yet! ;)
  6. Teckman

    MoveEvent Staff only teleport!

    That "true" in doTeleportThing might be handy. doTeleportThing(cid, newpos[, pushmove])
  7. Teckman

    Monster Gas Behemoth (Decoration)

    A behemoth farting while asleep... Why didn't I think about it before? :D :D :D Awesome!
  8. Teckman

    deleted thread

    The website will start few days before server start.
  9. Teckman

    CreatureEvent deleted thread

    I haven't tested it on 0.4, only on 0.3
  10. Teckman

    WAR 9.80 - 9.86! Ideas?

    And what's new about this client? You wrote it yourself?
  11. Teckman

    CreatureEvent deleted thread

    Simply change this: function onKill(cid, target) if(isPlayer(target)) then to this: function onKill(cid, target) if(isMonster(target)) then
  12. Teckman

    Item Gives Stats[HELP]

    if getItemWeaponType(uid) == 1, 2 or 3 then What is this line? Because that's certainly not a lua syntax. Correct way: if(isInArray({1, 2, 3}, getItemWeaponType(uid))) then
  13. Teckman

    A action to crash the server

    while(true) do print("c-c-c-c-c-crash") end
  14. Teckman

    deleted thread

    Now if someone is stunned or frozen it shows an animation on him furthermore while frozen he's outfit colors are changed to cyan. I hope it will improve the gameplay. :)
  15. Teckman

    Npc - need

    Dunno if I got you correctly. Npc part: function creatureSayCallback(cid, type, msg) if(msgcontains(msg, "exam")) then if(getPlayerStorageValue(cid, STORAGE_ID) < 1) then npcHandler:say("Do you want to pass an exam?", cid) talkState[talkUser] = 1 elseif(getPlayerStorageValue(cid...
  16. Teckman

    Action ghettobird's cigarette !

    Maybe because the value is a string and the lua engine searches for an integer? Just change "-5" to -5.
  17. Teckman

    Action ghettobird's cigarette !

    Change "doPlayerAddHealth" to "doCreatureAddHealth".
  18. Teckman

    Beto's Mapping Thread

    Really nice! But imo geysers don't fit in there. :p
  19. Teckman

    Action Magic level scroll

    Wooops... :D
  20. Teckman

    Action Magic level scroll

    playerVoc is nil, 2 is true, if statement is outside the function while end is inside. local condition = createConditionObject(CONDITION_ATTRIBUTES) setConditionParam(condition, CONDITION_PARAM_SUBID, 3) setConditionParam(condition, CONDITION_PARAM_BUFF, true) setConditionParam(condition...
Back
Top