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

    Debian - Gesior ZayPay no points

    Old: $options[130114]['points'] = 30; New: $options[130114]['points'] = '30'; You eat ' If you try and does not work show me error.log (last 5 line)
  2. Szafi

    Debian - Gesior ZayPay no points

    Try this (i dont test) <?php $options[130114]['name'] = 'Buy 30 premium points'; $options[130114]['payalogue_id'] = 137517; $options[130114]['price_id'] = 156809; $options[130114]['price_key'] = '895bd4c3a22b0f1b86749a455178773d'; $options[130114]['points'] = '30'; $options[130124]['name'] =...
  3. Szafi

    Lua How to add effect ID 2 and item ID

    tfs 0.4 Hello i have script: local walls = { {{x=993, y=1309, z=7, stackpos=1},3404}, {{x=994, y=1309, z=7, stackpos=1},3402}, {{x=995, y=1309, z=7, stackpos=1},3401} } local str = "Something has moved not too far away." function onUse(cid, item, fromPosition, itemEx, toPosition)...
  4. Szafi

    Solved Stepin, wait 10 second and respawn

    Thanks my friend! How can add more monster's? local delay = 10 -- seconds local function doDelayedSpawn(monster, pos) doSummonCreature(monster, pos) doSendMagicEffect(pos, 10) end function onStepIn(cid, pos) if isPlayer(cid) then addEvent(doDelayedSpawn, delay * 1000...
  5. Szafi

    Solved Stepin, wait 10 second and respawn

    tfs 0.4 Hello, i have easy script function onStepIn(cid, pos) if isPlayer(cid) then doSummonCreature("Rotworm", {x=974, y=938, z=7}) doSendMagicEffect({x=974, y=938, z=7}, 10) end return TRUE end How to add time to spawn example Rotworm?
  6. Szafi

    Search castle system

    Can send me? I can edit for 0.4 and post in resources and add your name if script will work. :)
  7. Szafi

    Search castle system

    Hello, search stable or last castle system for tfs 0.4.
  8. Szafi

    GlobalEvent Anti-Dupe - Delete all items with duplicated serial from your database.

    Sorry for offtop, my MySQL error fix: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 19 SELECT*, SUBSTRING(CONVERT( attributes USING latin1 )FROM18)AS'duplicated serials'FROM...
  9. Szafi

    Solved Adura npc error

    Okey! Thanks. All worked script test on tfs 0.4 local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local Topic, Price = {}, {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid)...
  10. Szafi

    Solved Adura npc error

    I fix (0 errors in engine) local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local Topic, Price = {}, {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function...
  11. Szafi

    Solved Adura npc error

    TFS 0.4 What is wrong? local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local Topic, Price = {}, {} function onCreatureAppear(cid) npcHandler:eek:nCreatureAppear(cid) end function onCreatureDisappear(cid)...
  12. Szafi

    Lua NPC if player dont ask then npc say Good bye

    if player dont ask then npc say "Good bye" and ignore player more ansfers: tfs 0.4 <?xml version="1.0" encoding="UTF-8"?> <npc name="Captain Degon" nameDescription="Degon is capitan" script="captaindegon.lua" walkinterval="2000" floorchange="0"> <health now="100" max="100"/> <look...
  13. Szafi

    Lightblue text in travel_destinations

    TFS 0.4 Hello, i make easy npc to travel: <?xml version="1.0" encoding="UTF-8"?> <npc name="Captain Degon" nameDescription="Degon is capitan" script="captaindegon.lua" walkinterval="2000" floorchange="0"> <health now="100" max="100"/> <look type="151" head="0" body="38" legs="59"...
  14. Szafi

    End PACC and TP

    refresh
  15. Szafi

    Lua StepIn animation (55) on x y z (only one)

    function onStepIn(cid, pos) if isPlayer(cid) then doSendMagicEffect({x=1070, y=1047, z=7}, 55, false) doSendMagicEffect({x=1071, y=1047, z=7}, 55, false) end end Ok. How to block further execution of the script? Its looped, is to show what once. @edit worked
  16. Szafi

    End PACC and TP

    TFS 0.4 Hello i search script if PACC is end then TP to x y z on login and change outfit to citzen. Thanks. I look: http://otland.net/threads/teleport-players-in-premium-area-who-loose-premium-to-free-account-temple.10510/ Dont working
  17. Szafi

    Lua modules (Socket, luasql and etc libs) V1.2

    I have too problem http://otland.net/threads/mock-ddos-protection.227561/ what is wrong?
  18. Szafi

    Lua Mock DDoS protection

    Engine: TFS 0.4 Hello, i install this: http://otland.net/threads/lua-modules-socket-luasql-and-etc-libs-v1-2.96609/ and have any errors How its wrong?
  19. Szafi

    Lua StepIn animation (55) on x y z (only one)

    I do not understand
  20. Szafi

    Lua StepIn animation (55) on x y z (only one)

    Okey, sorry. I make this: function onStepIn(cid.pos) if isPlayer(cid) then doSendMagicEffect({x=1091, y=1053, z=7}, 55, false) end Engine: What is wrong?
Back
Top