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

Recent content by mehimz

  1. M

    OpenTibia SharpMapTracker 0.8.1 by Jo3Bingham

    Is it possible to track older tibiacast versions? Lik 3.25? I know SharpMapTracker doesn't support it.. but is there an alternative way? Like tracking a .cam file that is playing in tibia client??
  2. M

    Lua Npc that has multiline text to say talks to everyone

    Fixed it :) the problem was doNpcTalkAlot function declared in one of the npcs that were loaded
  3. M

    Lua Npc that has multiline text to say talks to everyone

    Lol, well sources and npcsystem are updated... Funny thing is when i use clean TFS it works fine when it goes to my server it doesn't work... Tried copying every lib folder, same engine, copied npcsystem and still it doesn't work with my data folder o.O, checked global/compat.lua too
  4. M

    Lua Npc that has multiline text to say talks to everyone

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function...
  5. M

    Lua Npc that has multiline text to say talks to everyone

    No solution to this? :/
  6. M

    Lua Npc that has multiline text to say talks to everyone

    Hey i'm using TFS 1.0 and when 2 players speak to the same npc and the npc has multiline text it sends it to all players that are in npcs focus... How to fix that? I'm storing multiline text as a table in npcHandler:say?
  7. M

    (PHP) Map generating script

    <?php header('Content-Type: image/png'); $x = 32369; $y = 32241; $z = 7; $image = imagecreatefrompng("./maps/".$z.".png"); $new_width = 200; $new_height= 200; $image_new = imagecreatetruecolor($new_width, $new_height)...
  8. M

    Raids question.

    What is margin? And how to setup a chance that a raid will occur? As i understand correctly interval means that the raid will occur every 30 minutes. TFS 1.0 <raid name="Testraid" file="testraid.xml" interval2="30" margin="0"/>
  9. M

    Working Grizzly Adams for TFS 1.0?

    Can't get any of the posted ones to work. Any suggestions?
  10. M

    Question about npcs in Real Tibia

    When you were about to receive your reward or quest item did the npc check your cap? Or was it like... If you don't have cap the item goes under you?
  11. M

    A question about programming

    Anyone could help me... I just made a system that an item gets Bind on Equip in TFS. The problem is that when you get an item from a quest (ex. from chest) it automaticly gets equipped. Any ideas how to change that? I don't need the code i just need someone to point a place where should i look...
  12. M

    Running TFS and having an error

    if u mean the DLL files in the .exe file folder... i tried many DLL packs :/
  13. M

    Running TFS and having an error

    Compiled the TFS 0.3 in x64. It worked on my computer. But when i moved it to hosters computer i received a bug (0xc00007b)... tried many things like installing Visual C++ 2010 on it... .NET Framework..., Visual C++ Redistributable package etc etc... nothing worked... so whats the problem? Any...
  14. M

    doSendPlayerExtendedOpcode function help

    Well but it is in my source code?? Even checked every file and it is all correct... still doesnt work... - - - Updated - - - Or maybe i don't understand how it works correctly? That function should send and opcode to the OTClient right?
  15. M

    doSendPlayerExtendedOpcode function help

    Hi, I have the TFS version supporting sending an extended opcode to the OTclient (Checked the code) so why doesn't it work? doSendPlayerExtendedOpcode(cid, 53, "1001") <- Lua function and the message when i try to log in into the OTserver is: attempt to call global...
Back
Top