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

    TFS 1.0 Last Man Standing By Nevix

    No idea I never use 0.4. Sorry can't help with that, I think 0.4 doesn't support spectators function, but of course you can try.
  2. nevix

    [Tfs 1.2] Shop system MODAL window

    Gesior ACC, ZNOTE ACC, its simple configure everywhere
  3. nevix

    [Tfs 1.2] Shop system MODAL window

    Hello today I will present my shop system connected with website and modal window. first we need shop order table CREATE TABLE `shop_orders` ( `id` int(11) NOT NULL, `account_id` int(11) NOT NULL, `type` int(11) NOT NULL, `itemid` int(11) NOT NULL, `count` int(11) NOT NULL, `time`...
  4. nevix

    Gesior Shop system desigh

    No idea what about you talking, I did everything from scratch
  5. nevix

    Gesior Shop system desigh

    Hello, guys I come back on website designing and my shop systems, today I will show you gesior shop system just tell me what you think :) Of course when I finish it I will share. :)
  6. nevix

    About Modal window Back button

    Please someone can explain how to create modal window back button. I can create events to move forward but lets say, how to get back to previos event. I want like that: lets say I press back button and creatureEvent bring me back to previos choices. I will try explain more: first image...
  7. nevix

    OpenTibia Sublime Text 3 - Lua TFS Autocomplete

    Super. Thank you
  8. nevix

    Simple VIP System tfs 1.1

    Put the script on action folder. <action uniqueid="id" script="other/vip.lua" /> vip.lua code: function onUse(cid,item, fromPosition, target, toPosition, isHotkey) local portal = {x = 32353, y = 32219, z = 7} local viptimestorage = 15001 local player = Player(cid) if...
  9. nevix

    Solved About holes/stairs

    Fixed cheers
  10. nevix

    Solved About holes/stairs

    That hole doesn't work any ideas why?
  11. nevix

    Solved Problems with UniServer port 80 after windows 10 update

    You stop all http ports, and for uniserverZ you give chance open 8080 port. Actually you stop all ports including mysql servers as well
  12. nevix

    Solved Problems with UniServer port 80 after windows 10 update

    Open CMD and write ( net stop http ) and type ( Y) after start UniserverZ again
  13. nevix

    Solved Problems with UniServer port 80 after windows 10 update

    I'm use UniserverZ with windows 10 it's no problem. Just change ports in skype couse usually skype use that.
  14. nevix

    Modal Window

    function onSay(player, words, param) local title = "Choose your ability!" local message = 'Points to spend: \n Plus Name Current\n ' local window = ModalWindow(1, title, message) player:registerEvent("modal_1") window:addChoice(1, '[+1%] [Attack bonus]...
  15. nevix

    Updated data folder for 10.76 RME

    You doing awesome job mate, respect. Using that
  16. nevix

    TFS 1.0 Last Man Standing By Nevix

    I learned everything by myself, I tried 100 times and one was Successful. So use your brains and do your best. local firstrandom = math.random(1,10) -- CHANCE 1 of 10 local itemget_id1 = 2160 local itemget_id1_count = 100 local itemget_id2 = 2160 local itemget_id2_count = 2 if (firstrandom ==...
  17. nevix

    TFS 1.0 Last Man Standing By Nevix

    I know how to do it, but if I'm gonna do it everything for you, you will never learn lua language. random number 1,5 itemchance like 1,10 if random number == 1 && itemchance == 1 then you got this item elseif random number == 2 && itemchance == 1 then you got this item you can configure it by...
  18. nevix

    TFS 1.0 Last Man Standing By Nevix

    local spectators = getSpectators(waitingplace, 10, 10, false) 10,10 -- means 10 squares from to center. you can change it depends how many squares you would like to put. small eg: It is local spectators = getSpectators(waitingplace, 2, 2, false) -- area you can increase it by yourself...
  19. nevix

    Simple VIP System tfs 1.1

    local portal = {x = 32353, y = 32219, z = 7}, should be local portal = {x = 32353, y = 32219, z = 7} small mistake
Back
Top