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

    [PHP] Top Fragers with storages

    Pay me 100 Euros and i give you. Lol Joke =). SELECT g.id, g.name, SUM(k.value) AS total_storage FROM player_storage k LEFT OUTER JOIN players p ON (k.player_id = p.id) LEFT OUTER JOIN guild_ranks gr ON (p.rank_id = gr.id) LEFT OUTER JOIN guilds g ON (gr.guild_id = g.id) WHERE...
  2. Radium

    storage for char sample

    Not tested, function onLogin(cid) local SampleName = { 'Knight Sample', 'Druid Sample', 'Sorcerer Sample', 'Paladin Sample', } if isInArray(SampleName, getCreatureName(cid)) and getPlayerStorageValue(cid, 1234) == -1 then setPlayerStorageValue(cid, 1234, 1) end return true end
  3. Radium

    CreatureEvent Protection for your server

    Yah it is, you gave us function onLogin(cid) local permission = { 'GM Lucas Olzon Example', } if getPlayerGroupId(cid) >= 4 and not isInArray(permission, getCreatureName(cid)) then doBroadcastMessage("WARNING! "..getCreatureName(cid).." tried to login without...
  4. Radium

    Lua [Global Events], [Creature Script], [TFS 0.2.10] strange issu :D

    function onThink(interval, lastExecution, thinkInterval) for _, pid in ipairs(getPlayersOnline()) do if getPlayerStorageValue(pid, 4545) == 1 then doSendAnimatedText(getCreaturePosition(pid), "LOL!", math.random(1,255)) end end return TRUE end Try that.
  5. Radium

    Teleport Rune MAKING ME CRAZY!

    Using an addEvent for each second in a 30 second event, would be a bad idea. Imagine, 100 people using the same teleport rune. In my eyes, why make a addEvent script which will use more resources when you can use a loop.
  6. Radium

    Need help changing version..

    Download a 8.6 Distro, separate all files that are custom to your datapack, (optional - Modularize them), transfer all the files to a 8.6 downloaded distro.
  7. Radium

    Solved Problems with mysql_real_query

    Try this query in phpMyAdmin CREATE TABLE IF NOT EXISTS `z_ots_comunication` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `type` varchar(255) NOT NULL, `action` varchar(255) NOT NULL, `param1` varchar(255) NOT NULL, `param2` varchar(255) NOT NULL, `param3`...
  8. Radium

    [PHP] Top Fragers with storages

    Firstly, specify what you want to do with it. Do you want to make a "Top 30 Guild Frags"? if so.. then here. foreach($SQL->query('SELECT `g`.`id` AS `id` , `g`.`name` AS `name` , COUNT( `g`.`name` ) AS `frags` FROM `killers` k LEFT JOIN `player_killers` pk ON `k`.`id` =...
  9. Radium

    [PHP] Top Fragers with storages

    $main_content .= '<div style="text-align: center; font-weight: bold;">Top 30 storage of 6776 on ' . $config['server']['serverName'] . '</div> <table border="0" cellspacing="1" cellpadding="4" width="100%"> <tr bgcolor="' . $config['site']['vdarkborder'] . '"> <td class="white"...
  10. Radium

    Teleport Rune MAKING ME CRAZY!

    i = 0 while i < 30 do i = i + 1 if getCreatureCondition(cid, CONDITION_INFIGHT) == FALSE then doPlayerSendTextMessage(cid, MESSAGE_EVENT_ORANGE, "Teleportation has charged for "..i.." seconds.") if i == 30 then doTeleportThing(cid, getTownTemplePosition(getPlayerTown(cid))) end...
  11. Radium

    New Map Editor

    Looks promising, keep up the good work Nirv <3
  12. Radium

    Under level x to enter teleport

    function onStepIn(cid, item, position, fromPosition) if isPlayer(cid) == TRUE and getPlayerLevel(cid) < 15 then doTeleportThing(cid, {x = 111, y = 1111, z = 1}) doSendMagicEffect({x = 111, y = 1111, z = 1}, 15) doPlayerSendTextMessage(cid, 25, 'Blahblahblah') end return true end
  13. Radium

    Selling Selling Map

    Upload alot more Screens please, like screens of hunting areas, quests, detailed map pieces that you are proud of, etc. Will it be available anywhere else? will you re-sell it after?
  14. Radium

    [LUA]Config

    GDB: The GNU Project Debugger
  15. Radium

    Lulz Security - Sony

    Hahaha, that's funny as hell.
  16. Radium

    [USA]Frozen-Hell.org (8.54-8.57)

    Bump! :D
Back
Top