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

    [TFS 1.2] Simple Crafting System.

    Glad you managed to sort it out n_n Have a nice day!
  2. Ramirow

    [TFS 1.2] Simple Crafting System.

    Something like this should work: craftedItem:setAttribute(ITEM_ATTRIBUTE_DESCRIPTION, "Created by "..player:getName()..".") I don't know if it will work like this but you can try adding it at the end. self:addItem(config.system[lastChoice].items[choice.id].itemID...
  3. Ramirow

    [OTClient] Remove internal "ip changer"

    You can also open init.lua on the otclient folder and paste this at the bottom. EnterGame.setUniqueServer("YourIpHere", 7171, yourTibiaClientVersion) For example: EnterGame.setUniqueServer("myserver.servegame.com", 7171, 1098)
  4. Ramirow

    Action [TFS 1.2+] Simple Smithing Skill w/ Options

    @oshrigames was right. The updated one I posted contains some bugs. Here it's fixed: -- Smithing Skill v1.2 -- For TFS versions 1.2+ -- Uses CODEX NG's Spell Experience: https://otland.net/threads/player-spell-experience-1-2.238208/ -- Optionals: Zbizu's Ultimate Item Stat System...
  5. Ramirow

    weird bug in smithing script all details inside pls help.

    Downloaded a server just to help you out with it and test it by myself. My updated script also had that issue, you actually coded the tiers perfect so you didn't screw anything as you stated, after I fixed the createItem error everything went smoothly. Here you have the code you need attached...
  6. Ramirow

    weird bug in smithing script all details inside pls help.

    Will try to help but, can't help to notice it points out ERROR in line 272. My script has way less lines, so that error is not popping up on the original version, don't have a server to test now. I will modify a version so you can test with only one added change, north smithing stations instead...
  7. Ramirow

    Super Promotion Scroll TFS 1.2

    local cfg = { [ID_SCROLL1] = {fromVoc = 4, toVoc = 8, namefrom = 'knight', nameto = 'super knight'}, [ID_SCROLL2] = {fromVoc = 8, toVoc = 12, namefrom = 'super knight', nameto = 'ultra knight'}, [ID_SCROLL3] = {fromVoc = 3, toVoc = 7, namefrom = 'paladin', nameto = 'royal paladin'}...
  8. Ramirow

    Action Herblore / Mining Skill [TFS 1.1]

    A global min/max mining level? The message is already sent like that when you install Player - Spell experience 1.2 At the top of the script you set the skill name and the storage where it will be kept. local name = "Herblore" -- Name of the Custom Skill local storage = 15000 --...
  9. Ramirow

    Action Herblore / Mining Skill [TFS 1.1]

    You get that error because you need to install this first: Player - Spell Experience - 1.2 (https://otland.net/threads/player-spell-experience-1-2.238208/)
  10. Ramirow

    Action [TFS 1.2+] Simple Smithing Skill w/ Options

    The second error doesn't happen on my version of the script, so it has something to do with the modified one you made, altough I didn't check what may cause it, I will if I have time. About the first one, It's been a long time since I stopped coding altogether but, I think it may be caused...
  11. Ramirow

    Action [TFS 1.2+] Simple Smithing Skill w/ Options

    It's no bother friend, I think it's because my script is trying to check the position of the anvil and such by taking information from the tile you use your hammer with (In your case, there's no tile, as you're trying to use the crystal from your backpack). You want to rework it so it uses...
  12. Ramirow

    Action [TFS 1.2+] Simple Smithing Skill w/ Options

    I've made this script some time ago and there's a lot of room to improve it I believe (Or shorten it) but yeah, it should we working like, for example: tiers = {first = 1, second = 20, third = 40, fourth = 60, fifth = 90}, if smithingSkill < tiers.second then --Tier 1 crafting elseif...
  13. Ramirow

    Action [TFS 1.2+] Simple Smithing Skill w/ Options

    I don't actually remember why I made it like that, I think it has something to do with applying the refining from Zbizu's System (If there were many stacked items sometimes it won't work I believe). But since you're not using it, I can edit the script so it won't erase any created items from the...
  14. Ramirow

    Smithing Skill player storage issue?

    I will point this thread out to the post I made, indeed it is an storage issue. https://otland.net/threads/tfs-1-2-simple-smithing-skill-w-options.261756/post-2565751
  15. Ramirow

    Action [TFS 1.2+] Simple Smithing Skill w/ Options

    Hello mate n_n First of all, I reccomend you use the second script I posted here: If you use this code, you won't need to configure any position, it will work if you place a Coal Basin (ID: 1485) just one sqm south of an Anvil (ID: 2555) and it will calculate the Material and Reward position...
  16. Ramirow

    Need help with simple script

    I mean the server version, not the client. There are 8.6 servers that use TFS 1.2, TFS 0.4, etc. I need to know which SERVER version you're using.
  17. Ramirow

    Need help with simple script

    First and foremost, I'm guessing you're using 2 different servers, please state which version is the 8.6 one, and which version is the 10.99 one
  18. Ramirow

    TFS 0.X Dungeon queuer problem

    What are the prints you have there returned, I mean, where does it stop printing things in console?
  19. Ramirow

    TFS 0.X Dungeon queuer problem

    Got it to work then mate?
  20. Ramirow

    Action Herblore / Mining Skill [TFS 1.1]

    They do? That's a really nice surprise for me! If you need anything else just let me know.
Back
Top