• 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. Gsp

    OTservers are dying faster & faster.

    Good post
  2. Gsp

    Task NPC

    http://otland.net/threads/creatureevent-npc-killing-in-the-name-of.122701/
  3. Gsp

    for people who speak fluent english... not me haha...

    nowadays hip hop is a lost cause i'm staying hardcore ...?
  4. Gsp

    Hello is otland dying?

    yeah i hate it too and it's still buggy. old lua tags etc doesnt work properly. admins should spend more time on the site
  5. Gsp

    Lua How do i edit so players do less damage to each others

    http://otland.net/threads/pvp-damage-adjuster.181985/ requires source edit
  6. Gsp

    Lua How do i edit so players do less damage to each others

    vocations.xml <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> change them
  7. Gsp

    Strange symbols in database

    there are many people who use this quest and you are the only one with this problem. i don't think it has anything to do with tables
  8. Gsp

    Strange symbols in database

    try a newer version or you can try uniserver which is 10x better than xamp http://www.uniformserver.com/
  9. Gsp

    Strange symbols in database

    use a diff version of mysql and phpmyadmin see what happens
  10. Gsp

    doPlayerRemoveItem with 2 or more items?

    try something like .......... if doPlayerRemoveItem(cid, 2000, 1) and doPlayerRemoveItem(cid, 2000, 1) then selfSay('Good') end
  11. Gsp

    Lets Talk About Boxers

    joe louis was the best.
  12. Gsp

    guild members online in look.

    what should i put in creaturescripts.xml? <event type="look" name="guildmembers" event="script" value="look.lua"/> i have this and it doesnt work. no errors
  13. Gsp

    Random Server Shutdowns/Crashes

    if i were you id host it on my pc without any players and see what happens your players might be abusing a bug or something and u should check data>logs>server>error.txt
  14. Gsp

    Question about duplicated items

    If someone clones an item, will the description be copied on the cloned item? You see a magic sword. (X owns it) for example.
  15. Gsp

    Walking the npc to a pos

    if it is close to the target it walks to it but it doesnt if the target is more than 7sqms away i need it to move 20-25 sqms
  16. Gsp

    Walking the npc to a pos

    now the problem is it only walks 7 sqm =]
  17. Gsp

    Walking the npc to a pos

    works! love you man. final script local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end function onThink()...
  18. Gsp

    Walking the npc to a pos

    thanks man:D
  19. Gsp

    Walking the npc to a pos

    thanks Gesior but didn't work. if you dont know how to do it i dont think anyone knows lol i think i'll give up
  20. Gsp

    Walking the npc to a pos

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end function onThink() npcHandler:onThink() end function...
Back
Top