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

    I need a ModalWindow tutorial

    I need a modal window tutorial to learn how to use that, how to flex and etc. I have some ideas that i want to make and modalWindow will help a lot, but i didin't found anything that i could undestand how this proprely work. My bases are: [TFS 1.2] Modal Window Helper Lib...
  2. VictorOtInfinit

    Try/Catch on lua?

    this was the first thing that i tried :p, but in the end will be the same, checking tile by tile any way ;/
  3. VictorOtInfinit

    Try/Catch on lua?

    Worked but with this method we have a lot of issues like: Hardcode (each if statment must be made by hand), variables inside the IF's cannot be used in future without more hardcode/global vars. Assert is good but like u said, this method spend a lot of resources and for what i'm doing is not a...
  4. VictorOtInfinit

    Try/Catch on lua?

    There a way to do a Try/Catch in lua like in java? I need to verify if in X/Y/Z/Q/H SQM's have players, but when i try to: local playerPos1 = Tile(Position(32340, 32454, 6)):getTopCreature() And the SQM have no player the function: Tile(Position(32340, 32454, 6)):getTopCreature() will return...
  5. VictorOtInfinit

    Horizontal wall problem

    nice now is working 100% xD ty
  6. VictorOtInfinit

    Horizontal wall problem

    this is exactly what are happening.
  7. VictorOtInfinit

    Horizontal wall problem

    this \/ When i click in the wall to go back to the other side doesn't call the script, this is what i mean, when i click first time is printed in the distro this: "done", but the print doens't show when i click to go back. script: function onUse(cid, item, fromPosition, target, toPosition...
  8. VictorOtInfinit

    Horizontal wall problem

    My problem is that when the player gets teleported to the other side he clicks in the wall and nothing happens, the script doesn't even calls :/ 1610550929 my problem ins't the script is the fact that when player is above the wall he clicks in it and nothing happens, not even call the script...
  9. VictorOtInfinit

    Horizontal wall problem

    I have a wall to teleport the player in. But when player try to go back the function even call :/ The wall: How can i do to this wall teleport the player in both sides?
  10. VictorOtInfinit

    Theres no effects :(

    with that link i could realize what i'm doing wrong, so, i did this function to use: Now i can personalize even more ^^ local function effect(posEffect) local posTemp = {x=0,y=0,z=6} local posTempNeg = {x=0,y=0,z=6} for x = posEffect["x"]-3, posEffect["x"]+4 do posTemp["x"] = x...
  11. VictorOtInfinit

    Theres no effects :(

    i did: Position(creature:getPosition()):sendMagicEffect(CONST_ME_GROUNDSHAKER) Nothing happens, no error in distro. i did: Position(creature:getPosition()):sendMagicEffect(magicEffect, CONST_ME_GROUNDSHAKER) tibia crash, no distro error. i also did: local posEffect = creature:getPosition()...
  12. VictorOtInfinit

    Theres no effects :(

    My combat effect isn't working :( code: local spec = Game.getSpectators(creature:getPosition(), false, false, 4, 4, 4, 4) for _, c in pairs(spec) do if c and (c:isPlayer() or c:getMaster()) then doTargetCombatHealth(creature:getId(), c, COMBAT_EARTHDAMAGE...
  13. VictorOtInfinit

    How can i do a creaturescript file send a spell?

    I'm doing Scarlett Etzel boss, and i'm on the last thing. I want to know how can i do this in creaturescripts: Monster receive damage. Monster cast a spell. Any clue?
  14. VictorOtInfinit

    Where i can find this?

    Nope. W/E. Both @Evil Puncker and @Source already said where so, like i dont want to go in hex way i will just add a talkaction and a tile who say the time. ty all.
  15. VictorOtInfinit

    Where i can find this?

    can be only in client sources or need to change anything in hex?
  16. VictorOtInfinit

    Where i can find this?

    Extra XP boost, Loot drop and new features. And if the player enter in your server and he/she realize that has to pay premium account he log out, even if he need to pay VIP (i dont get it too, but is what happens) And without premium (if premium=vip) they will not be able to do anything (if i...
  17. VictorOtInfinit

    Where i can find this?

    I want to add a new info on account status, i need to hex this too? will be like: Account Status: Premium Account (x days) Vip Account (y days) Or i can do it with the sourcers? Hex scares me :>
  18. VictorOtInfinit

    Where i can find this?

    This part that is show in the datapack: I want to put a vip time in this account status but i didint find even using deep search in the IDE :(
  19. VictorOtInfinit

    Change Name from store bugged

    Now i printed everything and the offerId is always ~= GameStore.ClientOfferTypes.CLIENT_STORE_OFFER_NAMECHANGE , offerId = 0, namechange = 1 When i setted offerId to 1 crash the client. code below: function GameStore.processNameChangePurchase(player, offerId, productType, newName) local...
  20. VictorOtInfinit

    Change Name from store bugged

    Nice is this exaclty what i wanted. Finded: Nice tip, i will do that in my IDE next time xD Didnt know
Back
Top