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

    Windows Database

    Before and after the player name, replace ` for ': db.storeQuery("UPDATE `vicesera`.`players` SET `name` = '[".. getPlayerHonor(cid) .."] ".. getOldName(cid) .."' WHERE `players`.`id` = ".. getPlayerGUID(cid) ..";")
  2. Lordfire

    Windows Database

    You aren't enclosing player name as a string, you need to put ' before and after it.
  3. Lordfire

    Solved Error Cast System TFS 1.1

    No, it does not. You have to get some fork with it.
  4. Lordfire

    Port 80 is open on router and still closed ?

    Yes, they can open it, you just need to press them further. They act like bitches about it but Be there is no real problem to them. Be energic, say that you must have it, threaten them saying you will change providers if they don't do it, and never forget they're offering you a service and you...
  5. Lordfire

    Programmer Bounty added to grant Object Builder 10.76 Support.

    I'm not sure you should have that much hope. Unfortunately Object Builder was build using the shitty Adobe Air, for which most developers don't give a single fuck for. Hardly would someone update the project, rather than start from scratch on a better language. I'd give a try if I had more time.
  6. Lordfire

    Lua Tfs1.1 New currency problem

    The above is still missing ID for gold nugget.
  7. Lordfire

    Linux server

    Are you sure you are using 0.4? I have 0.4 here and it does not have an events folder.
  8. Lordfire

    Linux Speeding up recompilation with ccache

    ccache is a compiler cache designed to speed up subsequent compilations when it detects the same code is being recompiled. You will have to install ccache in your favorite Linux flavor using the package manager, along with all the other software needed to compile TFS, such as CMake and GCC...
  9. Lordfire

    [Znote AAC] Market-Depot

    I think a modded client and server is too much if you are really starting right now. If you don't know too much about OTserv, start right away with the modern versions of TFS, 1.0 and over. They have those functions enabled and working.
  10. Lordfire

    Error compiling tfs 1.2 on ubuntu 12.04

    4.8, plus you need Boost 1.53.0
  11. Lordfire

    sourcecode Creature::getStepDuration()

    I think the client itself has a limitation on that. It expects diagonal movement to take more time than x- or y-axis movement and it waits before sending the next walk packet. Try OTClient if you aren't yet to see if there are any changes.
  12. Lordfire

    Need help to fix my OT problem about scripts

    Copy the entire datapack to your server, you seem to have copied only world and npc. No, you didn't. You linked the forgotten server releases which only contain a basic testing datapack.
  13. Lordfire

    Lua TFS 1.2 !exit

    Easy. Whenever you have cid, you will now receive a player metatable. You can change, for instance: getCreaturePosition(cid) for: player:getPosition() Just rename cid to player in the parameters. That's the pattern. Good luck!
  14. Lordfire

    Linux server

    As he said, Linux is CASE SENSITIVE. Your bless file is named incorrectly.
  15. Lordfire

    TFS 1.0 MS 9.86

    You shouldn't use doCreatureSay as it is deprecated. Use player:say instead.
  16. Lordfire

    Solved creaturescript onThink() dilemma.

    1st option is not an option. We have not yet testet what can occur if you reduce the delay by ten times. It is a too big reduction to try. You might get away reducing to 500 and relaxing your AI delay to 500 too. Anyway, yes, only changing that value works. The second option is the way to go, I...
  17. Lordfire

    Doubt

    Of course it does not change anything. This update is just cosmetic and removes one wasted character :P it happens pretty frequently when someone doesn't check what is being commited.
  18. Lordfire

    Creature attacking player

    Shouldn't make a difference I guess, use whatever the other monsters use :) (which is 1)
  19. Lordfire

    Creature attacking player

    Shouldn't make a difference I guess, use whatever the other monsters use :) (which is 1)
  20. Lordfire

    Solved [TFS 1.2] Creaturescript onThink interval ignored

    You didn't think about it before because your thinking was the correct one, setting an interval for the event to fire :P unfortunately it's not like that (yet)
Back
Top