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

    Freelancer Developer

    -- Won't ask for help again. Not recommended.
  2. imkingran

    [USA] Middle Earth OT 10.00 | Unique Real Map | Join us today!

    bump Thanks everyone who came out to give it a try, I really appreciate it.
  3. imkingran

    OtLand New Support Team Members!

    Congrats guys, keep up the great work! :D
  4. imkingran

    [USA] Middle Earth OT 10.00 | Unique Real Map | Join us today!

    Restarting on Feb 4th @ 20:00 CET (I still gotta update the first post and some pages on the website) If anyone wants to log-in in beta mode and let me know if you find any bugs that'd be great.
  5. imkingran

    I'm Looking for help with Rookgaard katana room quest script

    change doSetItemActionId for doItemSetActionId
  6. imkingran

    Freelancer Developer

    Not recommended.
  7. imkingran

    I'm Looking for help with Rookgaard katana room quest script

    local config = { doorPosition = {x=32177, y=32148, z=11}, -- position of door doorActionId = 100, doors = { -- [doorId] = {closeId, setAction = true/false} [5109] = {5108, true}, -- open to close & set Aid [5108] = {5109, false} -- close to open & remove Aid } }...
  8. imkingran

    I'm Looking for help with Rookgaard katana room quest script

    There is a config table on the top where you can change the IDs, positions, and action id to whatever is the correct ones. local config = { doorPosition = {x=32177, y=32148, z=11}, -- position of door doorOpenId = 5109, -- open door ID doorCloseId = 5108, -- closed door ID...
  9. imkingran

    I'm Looking for help with Rookgaard katana room quest script

    Does it say which line? Try removing the .uid from doorOpen.uid and doorClosed.uid, since I don't remember how things worked in 0.4 If that doesn't work then Undo that and change: if doorOpen to if doorOpen > 0 and the same for the doorClosed check Edit: Try this: local config = {...
  10. imkingran

    I'm Looking for help with Rookgaard katana room quest script

    Not sure if I did it properly for 0.4 but try this: (ur using 0.4 or 0.3 right?) local config = { doorPosition = {x=32177, y=32148, z=11}, -- position of door doorOpenId = 5109, -- open door ID doorCloseId = 5107 -- closed door ID } function onUse(cid, item, fromPosition, itemEx...
  11. imkingran

    [EVENT] antiTrash - antiTheft system for houses [TFS 1.x]

    @Red @Zothion Thanks guys for pointing that out, completely overlooked that! Something I'll keep in mind next time I use string.find(). Now that you guys reminded me about this system (I no longer use it) there was one other thing that players were doing but I forgot to post here: If you place...
  12. imkingran

    Happy Birthday Sir Knighter

    Happy Birthday! :D
  13. imkingran

    [Mod] Random Item Stats

    Didn't test buy try this: (edited from your pastebin link) I added the option usePercents = boolean (true/false) to the table so you can decide which one use % and which one doesn't. attr['deadly'] = { attr = 'extraAttack', base = 'attack', name = 'Attack', types = {MELEE}...
  14. imkingran

    Lua Cannot configure an event in CreatureScripts

    Where did you put that, in what script? (Please paste the whole script here) What Engine are you using? 0.4/1.X
  15. imkingran

    [Mod] Random Item Stats

    Are you getting any errors in the console? Double check the code in this area, since I'm not using 0.4 so I'm not quite sure if it's written correctly: local ammy = getPlayerSlotItem(cid, CONST_SLOT_NECKLACE) if ammy then if ammy.itemid == bonusAmuletId...
  16. imkingran

    [Mod] Random Item Stats

    I guess you could do that. But why not just check to see if the player is wearing the amulet on the kill? Or are you using that storage in other scripts to achieve the same purpose? If it's not the latter then try this (non-tested/might not be proper syntax for 0.4) local bonusAmuletId = 11393...
  17. imkingran

    [Mod] Random Item Stats

    rate = getConfigInfo('rateLoot') local s = getCreatureStorage(cid, extra_loot_key) addEvent(dropLoot, 0, getThingPos(target), v, s == -1 and rate or s, getCreatureMaster(target), cid, target) It looks like it will just use the extra_loot_key value in place of the normal loot rate if the players...
  18. imkingran

    Very important - Rules change on otservlist.org

    Nice! One question: Would the same person who is connecting with multiple MCs be able to continue to abusing the system by using an IP Changer each time he opens a new client, change the IP, and connect?
  19. imkingran

    Linux Keep server online without putty.exe [SOLVED]

    Try using tmux: tmux is a terminal multiplexer: it enables a number of terminals to be created, accessed, and controlled from a single screen. tmux may be detached from a screen and continue running in the background, then later reattached. tmux ./tfs CTRL + B then D to detach To re-attach...
Back
Top