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

  1. S

    The Forgotten Server v0.2 (Mystic Spirit)

    Hi there i found weird bug in 0.3 so i checked (three days ago) 0.2 (latest rev) and there is the same (i think it is the same). Generally bug is about blocking spawn by monsters. I place boss like Orshabaal on map and sometimes there is a double spawn and i have to kill 2 Orsh~ instead one...
  2. S

    Compiling Create Item where is no ground

    BUMP I'm really need this. Anyone have not a clue how to do it?
  3. S

    Compiling Tortoıse SVN Problem

    http://www.speedy*****malware.localhost/885447967.html Here you are.
  4. S

    Spell problem

    In spells.xml change needlearn="1" to needlearn="0"
  5. S

    Compiling Create Item where is no ground

    Hello I have problem with doCreateItem(). Not a problem indeed, more desiry than problem. Anyone know that when you try to put somewhere item with doCreateItem, and there is no tile, you get error. It will be nice if somebody know how to create tile when it doesn't exist. I try myself do it but...
  6. S

    Lua Whats wrong with this script?

    Man... i just wrote it in my post. You just repeat my post in other form.
  7. S

    Lua Whats wrong with this script?

    Wel i rewrite your code and it looks like that:function createItems(ids,count,pos) --ids: {123,123...} --count: {1,2,3,4...} --pos: {{x=1...},{x=2..},...} if(#pos==#count and #count==#ids)then for i=1,#ids do doCreateItem(ids[i],count[i],tiles[i]) end return true else...
  8. S

    Tapestry\Trophies

    I'm sure that item are in house because i make it in center of house. This is not a problem. I checked this first. Anyone have similar problem? @@edit I ask my friend and he says that i should change if statement in saveTile() and loadTile(). Before change it look like that: (saveTile():104...
  9. S

    Tapestry\Trophies

    Well... it isn't bug on the map cause i add this record manually to the base. I think it doesn't matter because saveTile() don't save some items to the db (like tapestries). And this is a problem i think. And sorry if it not answer to your question cause i may wrong understand you.
  10. S

    Tapestry\Trophies

    Well i will refresh that topic cause it didn't worth to make new and problem is simillar. Anyone know what to do that tapestries will save after server reset? I really do not have idea. They just disappear after reset. I try add it manualy to database and i receive that error while server...
  11. S

    Summons Not Following On Attack

    I refresh this thread cause i have this weird bug also. The monster follow to their master but no to their target. They move only when the master move herself. I saw some bosses summons which doesn't know what to do and stay at their spawn place. Some of them 'work' fine and go to the player. I...
  12. S

    Online time!!!

    http://php.net/mysql -> Read about mysql_connect, mysql_db_select, mysql_query and mysql_fetch_array. And I think better use SELECT COUNT(*) FROM `players` WHERE `online`=1; It will be faster.
  13. S

    Compiling TFS 0.3 Linux Debian

    You haven't libasio installed in the system.
  14. S

    Lua timed lever

    I have no idea why it work now: function onUse(cid, item, fp, itemEx, tp) local wallPos = {x=171, y=386, z=7, stackpos=1} local getWall = getThingfromPos(wallPos) local function reset(uid) item = getThingfromPos(uid) doTransformItem(item.uid,1945)...
  15. S

    Lua timed lever

    slawkens, it the same i think. Only few more unnecessary if. In my and your script is mistake in the 6 line. There should be 1945 not item.itemid-1. Now it should work
Back
Top