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

    Level needed to write on channel and weird magic wall timer

    Because when any player uses bot which shows when magic wall will disappear then: duration: 20 - magic wall disappears too late (compared to bot's counter), duration: 19 - magic wall disappears too early (compared to bot's counter). So I think that 19.5 will be perfect value Player X sends...
  2. O

    Level needed to write on channel and weird magic wall timer

    Hello, I have 2 problems. First: I have in channels.xml for example: <channel id="5" name="Game-Chat" level="10"/> Is it possible to make exactly the same for private message channels? (not private chat channel :P) Second: Problem with magic wall rune <item id="1497" article="a"...
  3. O

    [SQL] get value and use in other query

    Hello, I want to get referrer (it's account_id) from accounts and use it in next query I have: $accountID = $_REQUEST['custom']; // user account ID $ref2 = "SELECT `referrer` FROM `accounts` WHERE `accounts`.`id`= '".mysql_real_escape_string($accountID)."';"; mysql_query($ref2); $sqltest =...
  4. O

    is it possible to doPlayerSendTextMessage in light blue color?

    Hello, is it possible to send message to player in light blue (for example in quest script "You have found...") It works: doPlayerSendTextMessage(cid,MESSAGE_STATUS_CONSOLE_BLUE, "...") But it is dark blue color :/ In 000-constant.lua I have onle these types: MESSAGE_STATUS_CONSOLE_RED = 18...
  5. O

    How can I get Cast System?

    How can I get the cast for tfs 0.4 3884?
  6. O

    How can I get Cast System?

    I need cast system for TFS 0.3.7 hmm.. So how did they get the system (premiera, narvia and many more servers)?
  7. O

    How can I get Cast System?

    Hello, does anyone know how to get Cast System like this: http://premiera.mine.nu/?subtopic=cast http://narvia.eu/casts Thanks in advance :)
  8. O

    Lua + SQL - one simple questin how get value

    Well, tried with: local ns_query =[[ SELECT id FROM players WHERE account_id !=1 AND players.town_id > 5 ]] function onStartup(_time) local player = db.storeQuery(ns_query) if player:getID() ~= -1 then repeat x = result.getDataInt(player,"id")...
  9. O

    Lua + SQL - one simple questin how get value

    Do you mean local ns_query =[[ SELECT id FROM players WHERE account_id !=1 AND players.town_id > 5 ]] function onStartup(_time) local player = db.getResult(ns_query) if player:getID() ~= -1 then repeat result.getDataInt(player,"UPDATE `players` SET `health` =...
  10. O

    Lua + SQL - one simple questin how get value

    The same error: attempt to index local 'player' (a number value)
  11. O

    Lua + SQL - one simple questin how get value

    Hello, I have these lines in globalevent script: local ns_query =[[ SELECT id FROM players WHERE account_id !=1 AND players.town_id > 5 ]] function onStartup(_time) local player = db.getResult(ns_query) if player:getID() ~= -1 then repeat...
  12. O

    [SQL] How to count items from player_items and player_depotitems?

    Hello, does anyone know how to count items from player_items and player_depotitems? I'm trying with: SELECT `player_items`.`itemtype`, SUM(`player_items`.`count`) AS count, `player_depotitems`.`itemtype`, SUM(`player_depotitems`.`count`) AS count FROM `player_items`...
  13. O

    Click and drop-down table

    bump
  14. O

    Click and drop-down table

    Does anyone know?
  15. O

    Click and drop-down table

    Hello. I have this table in characters.php (quest log): $id = $player->getCustomField("id"); $number_of_quests = 0; $main_content .= ' <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=4 WIDTH=100%> <TR><td colspan ="2" height="22" background="' . $layout_name ...
  16. O

    Filtrowanie ataków sieciowych

    Witam, zamierzam pisać pracę inżynierską na temat filtrowania ataków, mógłby ktoś polecić materiały związane z tym tematem? Mogą być nawet jakieś szczątkowe "do nauki", zawsze coś tam się wyciągnie wiedzy. W tym momencie jedyny sensowny dokument jaki znalazłem to ten...
  17. O

    Darowizny

    Wydaje mi się, że mając taki "zarobek" nawet nie miesięczny ale w skali roku powinno się mieć działalność, a to z tego względu że co miesiąc masz jakieś przychody (chodzi o przelewy), od których należy odprowadzać podatek, a jak jesteś osobą prywatną to urząd skarbowy się może przypierdzielić że...
  18. O

    Darowizny

    Dzięki, a potrafisz się odnieść do tego co później napisałem?
  19. O

    Darowizny

    No dobra ale zarobione jest 1500 czy bez 18% (podatek dochodowy) a więc 1230zł i ta kwota się wlicza do ogólnych zarobków? Jeszcze jedno pytanie - wie ktoś co w przypadku gdy ktoś np zarobi sobie z przelewów na początku 3 tysiące a dopiero potem odpali usługę SMS premium (jednocześnie...
  20. O

    Darowizny

    A wiesz może jak to wygląda np tutaj: Powiedzmy, że korzystamy z Homepaya (SMS + przelewy) i mamy SMS - Netto: 3000zł, Zysk: 1500 zł [prowizja 50%], od tego jeszcze odcinają nam 18% i zostaje 1230zł Przelewy - Zysk: 200zł Bierzemy teraz pod uwagę, że zarobiliśmy (3000 + 200) = 3200zł...
Back
Top