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

    Lua AM I using this right?

    function onUse(cid, item, fromPosition, itemEx, toPosition) i = getGlobalStorageValue(cid,v[2]) if i <= 0 then j = 1 else j = i end local v = t[item.uid] if v then if p(cid,v[1]) == -1 then setGlobalStorageValue(cid,v[2],1+j)...
  2. knightxd

    Lua Add a frag..

    i'm trying to add a frag to players in a creature event; the part that add frags is l = db.executeQuery("INSERT INTO `player_deaths` (`player_id`, `date`, `level`) VALUES (" .. getPlayerGUID(pid) .. ", " .. os.time() .. ", " .. getPlayerLevel(pid) .. ");") j = db.executeQuery("INSERT INTO...
  3. knightxd

    Windows Killers don't get frags? Rev777 with Gesior 0.3.6

    i got just the SAME problem on rev 3676
  4. knightxd

    Windows tfs 0.4 no frag count...

    i hope this too, but thanks :D
  5. knightxd

    Windows tfs 0.4 no frag count...

    can't use other rev, i can fix this one, but can't use another, if i do i'll have to edit all again.. i'm using a downloaded from here, i've already updated my lib... i changed to the lib of the trunk when i compiled
  6. knightxd

    Windows tfs 0.4 no frag count...

    i never used the pvp system, its tfs 0.4 trunk 3676 a little modified..
  7. knightxd

    Windows tfs 0.4 no frag count...

    none..
  8. knightxd

    Windows tfs 0.4 no frag count...

    [FIXED] close please well, i'm killing a player without skull.. 19:53 Warning! The murder of Aewe Wddf was not justified. and i'm not getting frags... 19:53 You currently have 0 frags today, 0 this week and 0 this month. also in db the frags are not add... anyone knows how can i fix that...
  9. knightxd

    paying for a quick fix. sources most likely..

    maybe its it.. do you want me to take a look at quest? the otserver is online?
  10. knightxd

    paying for a quick fix. sources most likely..

    its ever that? the quest is global or just for a player?
  11. knightxd

    paying for a quick fix. sources most likely..

    when you get the item of the quest? then when you try to open the backpack with it?
  12. knightxd

    8.54! Time Quest! Problem!

    change doItemSetAttribute(item.uid, "aid" + 1) to doItemSetAttribute(item.uid, "aid", getItemAttribute(item.uid,"aid") + 1)
  13. knightxd

    paying for a quick fix. sources most likely..

    what happend befor it?
  14. knightxd

    Compiling Creaturescripts onMove

    solved. close please
  15. knightxd

    Compiling Donators

    from the right of "forum" click on subversion, then choose the prevate ones, select theforgottenserver then trunk... and after that choose your ver.
  16. knightxd

    RL Pictures

    :D the one on right :D
  17. knightxd

    Red skull remover rune?

    try my first code.. function onUse(cid, item, frompos, item2, topos) if isPlayer(topos.uid) then doPlayerSendTextMessage(topos.uid, MESSAGE_INFO_DESCR, "Your frags have been removed.") doRemoveItem(item.uid) db.executeQuery("UPDATE `killers` SET `unjustified` = 0 WHERE...
  18. knightxd

    Red skull remover rune?

    if you are using a item that is targetable function onUse(cid, item, frompos, item2, topos) if isPlayer(topos.uid) then doPlayerSendTextMessage(topos.uid, MESSAGE_INFO_DESCR, "Your frags have been removed.") doRemoveItem(item.uid) db.executeQuery("UPDATE `killers` SET...
  19. knightxd

    Windows Can't see /bc, Server Save, Raid-messages etc?

    well you are using a previous data file and changed the distro? if you are, maybe you just changed it and forgot that it have a new lib, open the data file inside the trunk and copy the new lib into your server's, and also, if you added any function, copy it to a new lib...
Back
Top