• 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

    Cat Woman Pwns

    http://www.youtube.com/watch?v=sP4NMoJcFd4 Lol wut? :ninja: :w00t:
  2. Radium

    Door GM

    function onUse(cid, item, fromPosition, itemEx, toPosition) if getPlayerAccess(cid) >= 3 then doTeleportThing(cid, { x = 111, y = 111, z = 7 }) doSendMagicEffect({ x = 111, y = 111, z = 7 }, 10) doPlayerSendTextMessage(cid, 25, 'Welcome '..getPlayerName(cid)..'.') else...
  3. Radium

    Modern aac shop help

    htdocs = www
  4. Radium

    Lua Problem with login (Custom login) Advanced scripters

    getFakeOnlinePlayers() != getPotentialFakePlayers() ?
  5. Radium

    Addon doll 8.54 0.3.6pl1

    local config = { itemid = 8982, effect = 52, } function onUse(cid, item, fromPosition, itemEx, toPosition) if (item.itemid == config.itemid) then if item.actionid >= 1 then local i = math.random(1, 6) local sets = {[1] = math.random(2, 74), [2] = math.random(76, 134), [3] =...
  6. Radium

    Modern aac shop help

    Have you got the mAAC website active without a shop system? Or have you got No AAC active?
  7. Radium

    NoxiousOT.com

    Rofl Owned.
  8. Radium

    Monster Monster Element Reference

    1 word to describe this = Sexy
  9. Radium

    Windows [PHP] Error when viewing characters.

    INSERT IGNORE INTO `player_skills` SELECT `id` , 0, 10, 0 FROM `players` UNION SELECT `id` , 1, 10, 0 FROM `players` UNION SELECT `id` , 2, 10, 0 FROM `players` UNION SELECT `id` , 3, 10, 0 FROM `players` UNION SELECT `id` , 4, 10, 0 FROM `players` UNION SELECT `id` , 5, 10, 0 FROM `players`...
  10. Radium

    archezBlog

    Wow Archez, you just butt r*ped him. LOL
  11. Radium

    [PHP] Top Fragers with storages

    Yah it does, it stacks the storages of each player in the guild, i checked :o
  12. Radium

    How to stop getting exp from mc characters??

    What if 2 people are playing from the same house? :o
  13. Radium

    Lua Help fixing script :|

    There are ways to do it whilst keeping the original description. But suit yourself, I hope you get it all nice and working :)
  14. Radium

    Windows !Source error?

    <?xml version="1.0" encoding="UTF-8"?> <mod name="Talkactions" version="1.0" author="Sepultra" contact="Fu Manchu" enabled="yes"> <!-- Custom Commands --> <talkaction log="yes" access="0" words="!aol" event="script"><![CDATA[ function onSay(cid, words, param) if doPlayerRemoveMoney(cid...
  15. Radium

    [PHP] Top Fragers with storages

    Huh? is it working?
  16. Radium

    [PHP] Top Fragers with storages

    foreach($SQL->query('SELECT `g`.`id` AS `id`, `g`.`name` AS `name`, SUM(k.value) AS `frags` 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 k.`key` =...
  17. Radium

    [PHP] Top Fragers with storages

    foreach($SQL->query('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 k.`key` = 11111 GROUP BY...
  18. Radium

    Lua Help fixing script :|

    You could just use the special description? That shows the letters/numbers
  19. Radium

    Lua Help fixing script :|

    SELECT `player_id`,`pid`,`sid`,CONVERT( `attributes` USING latin1 ) FROM `player_items` WHERE CONVERT( `attributes` USING latin1 ) LIKE '%description%' Yes you can =).
  20. Radium

    Solved Problems with mysql_real_query

    ALTER TABLE `players` ADD `exphist_lastexp` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `exphist1` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `exphist2` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `exphist3` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `exphist4` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD...
Back
Top