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

    Solved [TFS 1.0] Make a monster attack other monsters?

    Possible? If not, could someone point me to where in the sourcecodes I need to edit? Thanks
  2. Tufte

    [C++] getItemDescription(uid) lua function returning empty string?

    So I made this lua function, but it returns an empty string whether the item has a special description or not. Anyone knows why and how to fix it? int32_t LuaScriptInterface::luaGetItemDesc(lua_State* L) { //getItemDesc(uid) uint32_t uid = popNumber(L); ScriptEnvironment* env =...
  3. Tufte

    Let's learn how to use Remere's !

    How do I rotate/flip around a copy? Like if I want a symetric area, and I make half of it, I want to copy and flip it 180 degrees to save time?
  4. Tufte

    Lua [TFS 1.0] Access item description on a unique item?

    Lets say I create an item, and then use doSetItemSpecialDescription(uid, desc) on it. How can I read this unique description from another script? getItemDescriptions(itemid) only work for descriptions set items.xml.
  5. Tufte

    Solved [TFS 1.0] Paralyze somoene in a nonspell script?

    thank you so much ur the best
  6. Tufte

    Solved [TFS 1.0] Paralyze somoene in a nonspell script?

    Kinda complicated, if you use an item, it will boost your next attack with a slow. What I need help with is how to use conditions like paralyze, haste etc outside spells.
  7. Tufte

    Solved [TFS 1.0] Paralyze somoene in a nonspell script?

    How can I paralyze someone for a duration in a nonspell script?
  8. Tufte

    [SOLVED] [TFS 1.0] Request c++ lua function 'canWalkTo()'

    Can some experienced c++ prorgammer help me create a function that uses the same calculations as autowalk, to check whether a player can walk to a certain position or not? So if the path is blocked by an immovable object, unwalkable terrain or creature it will return false, and true for the...
  9. Tufte

    Lua Custom exeta res (challenge) spell help

    So I've made a function in source that challenges players, and it works. But I'm really bad at scripting spells, and I don't want to make a talk action if I can do it with a spell. This is my attempt: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT...
  10. Tufte

    Lua IsPathBlocked(fromPos, toPos)

    I need a function that checks whether a player can walk to a location or not. Can this be done in lua or does it require source editing? I was looking at the autowalk sourcecode, and tried to make a lua function using the existing code but I failed. Here is what I tried: int32_t...
  11. Tufte

    Solved Teleport to crosshair (item or rune)

    thanks! ive been gone from the ot community for 4 years, gotta say you guys are extremely helpful. cant remember getting this much and this fast support before.
  12. Tufte

    Solved Teleport to crosshair (item or rune)

    Hi, I'm trying to make an item/rune that teleports me to the area that I've clicked. With actions, I can't do it because it wont execute the script before im next to the position I clicked. I figured I could do it with a rune, but how do I access the the coordinates to the position I've...
  13. Tufte

    Solved Where can I find the constants?

    thanks! so you can only have numbers show in animated text? I cant make it say "+20 gold" for instance?
  14. Tufte

    Solved Where can I find the constants?

    anyone else having trouble with doSendAnimatedText(pos, text, color) in tfs 1.0?
  15. Tufte

    Solved Where can I find the constants?

    thanks
  16. Tufte

    Solved Where can I find the constants?

    I can't find the document that has listed all the constants used for different text effects, colors, animations etc. Can anyone link me? Thanks in advance.
  17. Tufte

    Solved TFS 1.0 - Accounts dosent work

    EDIT: nvm
  18. Tufte

    Solved TFS 1.0 - Accounts dosent work

    thank you ;)
  19. Tufte

    Solved TFS 1.0 - Accounts dosent work

    So I've compiled TFS 1.0, and got the server running with mySql. I've made an account in the database with id 1, name 1 and pw 1, but when I try to log in to the server using the otland ip changer, it just tells me wrong account number or password. I know the ip changer is working, because if I...
Back
Top