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

    [list] CIPSoft lazy solutions

    We are using OTC, open source client.
  2. andu

    Lua (TFS 0.4) How to make player not able to cast spells?

    if you dont want to edit sources or edit every spell's lua this is the only way edit below Xikini shown you what to do if you decide to go with editing spells
  3. andu

    Lua (TFS 0.4) How to make player not able to cast spells?

    local muted = createConditionObject(CONDITION_MUTED) setConditionParam(muted, CONDITION_PARAM_TICKS, 3000) function.... return doAddCondition(target, muted) end
  4. andu

    [Quick Showoff] Post your latest maps!

    Changed water sprite's alpha level from 255 to 195
  5. andu

    [Quick Showoff] Post your latest maps!

    Every showoff needs atleast one image with transparent water. I don't know correct english words to name that. This library is ripped? rift? rifted? splitted? by a magic. Below you can see abandoned, flooded library.
  6. andu

    Complaint Voting on dark theme

    If you are using CSS extension you can add this: .iconic>input[type=radio]+i:after { color: red; }
  7. andu

    Can't login to own server?

    Yep. You did exactly like it's in 3rd link I posted. I'm glad you make it works.
  8. andu

    [OtLand Official Mapping Competition] - December Voting Thread

    If I look at this from this point: Christmas is a moment when it's cold weather. But you have time for family and this makes you feel warm on heart. 3rd makes me feel like that. If I look from player's point then: 1,2,3,4,5,6,7 are best Decided to look from family and heart warming point. We...
  9. andu

    Can't login to own server?

    Did you tried to connect via localhost (not 127.0.0.1), or 192.168.0.1? this was a common issue in the past. I found multiple topics with the same issue, some of them are solved. You can take a peek here: https://otland.net/threads/cant-connect-to-own-server.240331/...
  10. andu

    IMPORTANT! All Notepad++ users!

    That was a something around 2005 year :D Later only N++ or other advanced stuff for web. VS for little lua changes, hmm. It loads longer then N++, it's heavier at all. Still notepad++ is worth for quick edits. But when quick edit turns to 20h that means you were too focused to open VS :p
  11. andu

    Complaint Voting on dark theme

    I agree, a little change would be nice. For a temporary solution, maybe it will help Chrome released it's own dark theme for websites. It's already implemented for beta tests. Enter new tab chrome://flags and change "Force Dark Mode for Web Contents"
  12. andu

    Let's save OpenTibia legacy!

    I remember my first try with map editing. 1. login on gm char 2. use /i command 3. hard thinking how to remove wrongly placed wall with /i command 4. realizing that there have to be other way 5. restarting server proved point 4.
  13. andu

    Let's save OpenTibia legacy!

    What was map's file extension before we was using editors with 'otbm'?
  14. andu

    IMPORTANT! All Notepad++ users!

    Yes but it sometimes converts lua file with multiple lines into one line of text. Not sure it's still in Win7,8,10 but on XP it was like that.
  15. andu

    C++ needs little help with

    testing it for few days and no issues found. I even moved forward for spell cost health and healthpercent full here: https://github.com/otland/forgottenserver/pull/2734/files
  16. andu

    Quick fix, 1 minute

    It wont work.
  17. andu

    What OTB, SPR, DAT editor for 10.98?

    Found ItemEditor 0.4 with sources. But looks like it's for OTB files only. What Spr and Dat editors do you guys use for 10.98?
  18. andu

    Quick fix, 1 minute

    When I wrote it in the old way, and it works: local function addTreasureLoot(self) self:addItem(2195, 1) ... addTreasureLoot(chest) However I saw multiple weird things in latest TFS, where self wasn't declared in function's arguments but function was working with it. That's why...
  19. andu

    Quick fix, 1 minute

    Have to learn how does self thing works in TFS 1.x+ and have to use a local function for this. Future, I'll move it to libs so no workarounds. local function addTreasureLoot() self:addItem(2195, 1) return true end function onSay(player, words, param) local chest =...
  20. andu

    IMPORTANT! All Notepad++ users!

    I clicked ctrl + s in Notepad++ and my pc instantly froze for 10min or more, probably permanently. After restarting system my lua file is: 20 hours of work went to the void. Checked multiple forums about solution. There's no solution. What I learned and what you all guys should do right now...
Back
Top