• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. TGYoshi

    Another new map editor (WIP)

    Currently I'm testing everything with 8.54 and 9.60 which works. As far as I know 7.4 etc. requires slight .dat reading changes which shouldn't be any problem to support either (some otbm changes as well, probably). Didn't look into the old versions yet.
  2. TGYoshi

    OpenTibia SpellCreator: A graphical spell creation enviroment

    Now I understand you :). local target = variantToNumber(var) Replace local startPos = getCreaturePosition(cid) with: if (variantToNumber(var) == 0) return true; end local startPos = variantToPosition(var); - - - Updated - - - (edit) If the rune may be casted anywhere, remove the line if...
  3. TGYoshi

    OpenTibia SpellCreator: A graphical spell creation enviroment

    Well, then explain exactly what you want since I simply do not understand what you're trying to say.
  4. TGYoshi

    OpenTibia SpellCreator: A graphical spell creation enviroment

    Oh, I guess I get what you mean. After: if (dirList ~= nil) then -- Emit distance effects in the script, place a new line: dirEmitPos = getCreaturePosition(cid)
  5. TGYoshi

    OpenTibia SpellCreator: A graphical spell creation enviroment

    I don't really understand what you want. If you want a distance effect to go to the location the rune is casted on, use a "To-Target distance effect" in the brush editor.
  6. TGYoshi

    Suggestion 'Warning, you are about to leave OTLand message'

    Hell no, those screens are damn annoying and I know very well if whatever I'm doing is safe or not. If this feature ever comes for whatever reason, many others want to turn the utterly useless and annoying screen off as well.
  7. TGYoshi

    Another new map editor (WIP)

    Hotkeys work correctly now. (right-top) Anything can be put in the hotkey bar, you will be able to customize the keys and amount. You can also put a big custom selection in a hotkey. Or a whole map.
  8. TGYoshi

    Complaint the mobile version sucks

    I love how everyone cries about every little thing lately.
  9. TGYoshi

    Having problem with Connecting to game

    Unless you have a proper loopback working on your network, you can not connect to yourself with an external IP. Others, however, can. You can rapidly check at Open Port Check Tool if others are able to connect to you (use port 7171 and 7172).
  10. TGYoshi

    Compiling Bad compilation?

    Since I'm not able to just guess this, try to cpu-profile the application to figure out what causes the big cpu usage. If you use Windows, check out Windows Performance Analysis Developer Center to get started with profiling the TFS project. For Linux, google around a bit. Might be easier to...
  11. TGYoshi

    Something is wrong with mi ot 9.6 !!

    You host locally or via a dedicated server? If the latest, check RDP audit logs first. If you lost locally, I hope they didn't get access to your filesystem, then your pc could've been messed up. Make sure port 3306 is closed, or whatever mysql port you use. Consider switching to Uniserver...
  12. TGYoshi

    Another new map editor (WIP)

    Oh well, thanks for reminding. :P
  13. TGYoshi

    Otland Community Feedback #2

    Amazes me how less people have ticked the one-by-last option.
  14. TGYoshi

    Another new map editor (WIP)

    Well, I've updated it all a bit. Finally got 9.60 working correctly. (should update my SpellCreator with the same thing someday) Besides that I've also made some position control which allows you to paste positions from clipboard right into the field. Copying a position from the playfield will...
  15. TGYoshi

    Have you ever been banned, and why?

    Well, most of the bans in this thread are legit bans. Amazes me how often people think some bans aren't legit. Never been banned myself.
  16. TGYoshi

    OpenTibia SpellCreator: A graphical spell creation enviroment

    Your rev/server probably doesn't support this correctly (since I've got it working correctly myself..), try to set the damage formula to _LEVELMAGIC, with the values (in order): 0; 20; 0; 30. Keep in mind many rev's/server's have a broken /reload spells, you might have to restart the server first.
  17. TGYoshi

    OpenTibia SpellCreator: A graphical spell creation enviroment

    If you want your spell to heal people, go to Spell => Properties and untick "Agressive". If you tick agressive, it will target opponents and thus heal them instead, if you untick agressive, it will target allied people and heal those (and yourself if the area covers it). If you want it to be a...
  18. TGYoshi

    How to install website at a different dedicated than your main-server.

    Well, I can't just guess the problem like this, are you sure 3306 is bound to mysql and the port is open (check at http://www.yougetsignal.com/tools/open-ports/ )? Also try to var_dump($config['server']) at the end of Geisor's index.php, check the output and eventually post it here (censor...
  19. TGYoshi

    Solved Help me, plax!

    In your very first script, replace: [8472] = {empty = 8472, splash = 3, health = {380, 350}, mana = {140, 160}, level = 80, vocations = {3, 7}, vocStr = "paladins"} -- great spirit potion with [8472] = {empty = 8472, splash = 3, health = {350, 380}, mana = {140, 160}, level = 80, vocations = {3...
  20. TGYoshi

    SQL Fuction how to add in script?

    You remove the creature first, then you attempt to get the creatures name while he's removed. function onLogin(cid) if getPlayerStorageValue(cid, 56364) < 1 and isInArray({1,2,5,6}, getPlayerVocation(cid)) then doCreatureSetStorage(cid, 56364, 1) local name =...
Back
Top