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

    Lua Items require player value

    check out callFunction(cid, item.uid, slot, boolean) :p remember to include boolean in function onEquip arguments
  2. Cykotitan

    Script in Paygol in Buypoints

    <?php if(!defined('INITIALIZED')) exit; #################### CONFIG ################################################## # # activate zaypay and other systems: true / false # making something active/not active here doesn't mean that people can somehow abuse X system to buy points # /*...
  3. Cykotitan

    Zaypal is wrong please help rep++

    Try to get approved if you haven't already. Or set $noIPCheck = 1;
  4. Cykotitan

    [PHP] Get highest player from MYSQL Database

    there's no number, your PHP code/loop is wrong:p the columns are name and level
  5. Cykotitan

    Lua Items require player value

    how's onEquip for a change? if you're using 0.4 you can even use callFunction to get the item's stat modifications to apply what exactly does Lua not support?
  6. Cykotitan

    URGENT !!! Gesior 1.0.1 Paypal Bug - Players Wont Recieve Points!

    verify that the paypal servers are reaching http://lightonia.servegame.com/?subtopic=paypal_report by checking your access.log if you see hits, add your IP to whitelist and test the script with the correct parameters manually :p
  7. Cykotitan

    Script in Paygol in Buypoints

    are you sure you're not visiting ipn.php? :p
  8. Cykotitan

    [PHP] Get highest player from MYSQL Database

    SELECT `name`, `level` FROM `players` ORDER BY `level` DESC, `experience` DESC LIMIT 1 assuming you don't want gender involvement
  9. Cykotitan

    Map Editor - Moveable ID

    it should work with any moveable item placed on map :p
  10. Cykotitan

    Map Editor - Moveable ID

    another way I see used often is placing "something sparkling" (8046/8047) on top of the item, but it's not always appropriate to do use whichever you think is cleaner or easier to keep track of :p
  11. Cykotitan

    Lua [Talkaction] Ignore Messages (/squelch)

    Player flags if you check ST flags, you'll see they have "Can not be muted" :D
  12. Cykotitan

    [League of Legends] General Discussion

    long game which didn't give good results, xin who fed the whole match was left alone to defend nexus and irelia was afk that feel when you go from 0/4 -> 4/4 to 10/4 before getting shut down
  13. Cykotitan

    (Unofficial) Shadowcores Custom Client

    2 friends here couldn't get .NET 3.5 to install so I pointed them to a custom client. pretty weird :p
  14. Cykotitan

    [League of Legends] General Discussion

    hard game because of my earlygame aggressiveness and suicides
  15. Cykotitan

    [League of Legends] General Discussion

    best team EUW that xin was a scrub who was never in teamfights except to KS
  16. Cykotitan

    Lua Script help

    function onUse(cid, item, fromPosition, itemEx, toPosition) local thing = getThingfromPos({x=1001, y=1003, z=6, stackpos=1}) if thing.uid ~= 0 and isInArray({1, 2, 3}, getItemWeaponType(thing.uid)) then if getTileItemById({x=999, y=1003, z=6}, 2156).uid ~= 0 then if...
  17. Cykotitan

    Clean Area and player check

    have you tried MESSAGE_EVENT_ORANGE or MESSAGE_STATUS_CONSOLE_ORANGE instead of MESSAGE_EVENT_ADVANCE
  18. Cykotitan

    Clean Area and player check

    remove function Spawn() for x = from.x, to.x do for y = from.y, to.y do local a = getTopCreature({x=x, y=y, z=7}).uid if a ~= 0 and isPlayer(a) then addEvent(Spawn, 15 * 1000) doCreateMonster('Deadly Zombie', spawn) doSendMagicEffect(spawn, CONST_ME_TELEPORT) return true...
  19. Cykotitan

    Solved Mysql Unknown column player

    on an empty database..
Back
Top