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

    Lua GuildMaster for TFS 0.3.6

    So, I've been wondering if anyone knows any "easy" way to create a GuildMaster NPC in 0.3.6 I know there are the talkaction things (even if I only have !create and !join, no idea why the rest isn't there haha), but I wanted an NPC. I've picked up one from a 8.0 version but it seems 0.3.6...
  2. filipus

    What is the difference between 1.0 and 0.3-0.4 in the c++ scripting?

    So I was looking at the sources and the method of adding functions is exactly the same. So... If I wanted to add something like this http://otland.net/threads/silence-tfs-1-0.222412/ on my server the only thing I would need to do would be to add the functions that don't exist in 0.36 in my...
  3. filipus

    Any way to "kill" elfbot speedhack for 8.6?

    So, I know latter versions of the game basically "killed" elfbot dash hack, was it a source edit or a lua script? How did they solve it? Is there anyway to change my sources to still have a 8.6 server but that it doesn't allow that to happen?
  4. filipus

    Any server that isn't defined by grinding.

    No Narutos/Pokémon or 100% War servers please. I was trying to make a otserver like 2 months ago and it actually going fine but... I realised that Tibia is a grinding game... And I personally hate those kinds of games nowadays. So I stopped. I was thinking, have you guys ever seen a good...
  5. filipus

    Lua How to detect it is night?

    So, is there any way? How does the server calculate the day and night cicle? I'm currently using tibian time correctly (using the tíbia watch script haha) but I can't find a way to determine if its night or not. My problem is that the moment that the night activates seems to change acording to...
  6. filipus

    Solved isInArea not working (0.3.6)

    So I'm using the isInArea function. I don't know why but it doesn't seem to be working. Here is my code: local arena = { frompos = {x=32389, y=32188, z=7}, topos = {x=32403, y=32201, z=7}, exit = {x=32404, y=32204, z=7} } function onPrepareDeath(cid, lastHitKiller, mostDamageKiller) if...
  7. filipus

    Player doesn't get skull when killing someone.

    So, i have set my redskull to be = 1 frag. But what is happening is that when the users that is getting attacked (with no skull) defends himself (attacks the PK), if the PK kills him he doesn't get a redskull, only a white. If the person getting attacked doesn't defend himself the PK gets a...
  8. filipus

    Solved TFS 0.3.6 db.executeQuery (Sqlite)

    I was looking fora db.executeQuery that could update the player on the database to a certain level, no skulls, in a certain position, etc... I have this but it isn't working :/ db.executeQuery("UPDATE `players` SET `level` = `".. newlevel .."`,`experience` = `".. newexp .."`,`skull` = `"...
  9. filipus

    TFS 0.3.6 Isn't calling a script

    So, I want to call a script when the character dies but I've been going around this for hours and I haven't been able to do anything! Can anyone help?? Creaturescripts <?xml version="1.0" encoding="UTF-8"?> <creaturescripts> <event type="login" name="PlayerLogin" event="script"...
  10. filipus

    Startskills on TFS 0.3.6

    My code doesn't seem to be working, I don't know why. It doesn't give any error but it doesn't seem to even run. function onLogin(cid) local playerVoc = getPlayerVocation(cid) local reqTries = getPlayerRequiredSkillTries local skillStor = 56364 local gotSkills = getPlayerStorageValue(cid...
  11. filipus

    TFS 0.3.6 Player Lose All Equips On Death

    I am trying to create a script that when the player dies he losses all his equipments and when he login again he gains his "first equipment". I have the first equipment thing done but I have no idea how to make him loss all his equipment and tell the "firstequipmnet" script that they need to get...
  12. filipus

    TFS Crashes

    I hope this is in the right place. I'm using TFS 0.3.6 and I'm having a strange error I can't identify the source. Whenever I log 2 accounts at the same time and characters from different accounts attack each other the server freezes, completely. Im testing it on my pc (127.0.0.1) so I don't...
  13. filipus

    On Death Reset Skulls to 0 [TFS]

    So I am kind of new to all this scripting thing but I tried 2 things function onDeath(cid) db.query("INSERT INTO 'players' ('skull') VALUES ("0") ") end The other way was using doPlayerSetSkull = 0 So... can anyone help? Thanks :)
  14. filipus

    War ot and raids :)

    Well, i'm having 2 problems. The first one is that in my war otserver, when you die, you lose the equips ( normal ) and when you reconnect, you dont have them back ( not normal ): ) Can someone tell me how to put the chars to their default everytime they login? The 2 problem is about...
Back
Top