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

    [NPC] Teleports with monster count

    Player: hi npc: Hello, to pass here I want you to kill 15 Dragon Lords and 5 Wyrms. Can you do that? player: yes npc: Perfect, come and talk to me when you finished your task. After the task is done Player: hi NPC: Oh, so you completed the task I gave you? Player: yes NPC: Alright, you proven...
  2. Cloow

    [NPC] Teleports with monster count

    searched around the forum to long now, im requesting as in title an npc that will teleport you if you have killed enough of monster. Something alike task npc but reward is travel opportunity
  3. Cloow

    Gamemaster Lubo's Application For GM!

    gogo!
  4. Cloow

    Teleport to pos with storageids

    Yeah, that's right :) It's a tower with 7 floors, when you reach the next floor you get the storageid thats because if you die in the floor you should be able to teleport back to just that floor function onStepIn(cid, item, pos) config = { [-1] = {x=1027, y=1015, z=8}, -- Cancel pos [0] =...
  5. Cloow

    Lua Problem with npcs (NEED HELP!)

    Ehm, try to replace your npc/lib folder haha
  6. Cloow

    Lua Problem with npcs (NEED HELP!)

    Did you get that error with the npc I just posted? Try to replace default.lua local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function...
  7. Cloow

    Playername

    Hello, im not sure if this could be done with lua. I need a script which makes players with storageid 1003, gets an "#" infront of their names and players with storageid 1004 have an "¤" infront of their name. like #Cloow or ¤Fring Yeah, you get the point :)
  8. Cloow

    8.4 exe? Possible?

    Eldin sure have some old server laying around on hes blog News - Eldin Projects or you could search around the forum over at "Archived Distributions" Archived Distributions
  9. Cloow

    Lua Problem with npcs (NEED HELP!)

    <?xml version="1.0" encoding="UTF-8"?> <npc name="Perac" script="default.lua" walkinterval="2000" floorchange="0"> <health now="150" max="150"/> <look type="134" head="57" body="59" legs="40" feet="76" addons="3" corpse="2212"/> <parameters> <parameter key="module_shop" value="1"/>...
  10. Cloow

    Teleport to pos with storageids

    Works with the first floor, after that it just sends me cancel no console errors Im not quite sure it should look like this. I need to remove the storageid totally from the player. Since when they reach checkpoint nr 2 storageid from checkpoint nr 1 should be removed...
  11. Cloow

    Teleport to pos with storageids

    Hello, can someone please fix my script? When entering a tile, you get teleported to your specific storageid I can't see what im doing wrong. function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor) local config = { {storage = 10001, position =...
  12. Cloow

    Fragsystem by GroupID

    Can someone please fix my broken script? I have factions, faction 1 is used by group id 2 and faction 2 is used by group id 3 this script should make so if faction 1 kill faction 1 player he gets whiteskull and removes 1 "pvp token" but if he kills a faction 2 member he instead gain 1 pvp...
  13. Cloow

    name by groupid

    So I want a script which automatically adds a "#" infront of players with group id 2 and adds "¤" infront of players with group id 3
  14. Cloow

    Multi teleports with storages

    Thanks, I wanted the the same teleport to take you to all locations so instead where UID is it's the same uid for all teleports. Script runs and execute but when walking I have storageid 10001 I wont get teleported, but with 10002 it works. <movevent type="StepIn" actionid="10000"...
  15. Cloow

    Multi teleports with storages

    Yep, im 100% I removed them. current script <event type="kill" name="tfm" event="script" value="tfm.lua"/> local monsters = { ["Floor 1 [BOSS]"] = {toPos = {x = 1023, y = 1017, z = 6}}, ["Floor 2 [BOSS]"] = {toPos = {x = 1023, y = 1017, z = 5}}, ["Floor 3 [BOSS]"] = {toPos = {x =...
  16. Cloow

    Multi teleports with storages

    Haha, oh tought I had to register the monster >.< - - - Updated - - - Still getting the error and no teleport appears after death :o
  17. Cloow

    Multi teleports with storages

    Thank you :) - - - Updated - - - I have another script, Im not quite sure why this wont work. It's INQ teleports, kill monster teleports creates and removes after x seconds. local monsters = { ["Floor 1 [BOSS]"] = {teleportPos = {x = 1044, y = 1009, z = 7, stackpos = 1}, toPos = {x =...
  18. Cloow

    Multi teleports with storages

    Thanks alot :) but theres one more thing in floor 1 and 2 scripts the console says "unexpected symbol near '~='" floor 1 function onStepIn(cid, item, position, fromPosition) local pos = getCreaturePosition(cid) if(isPlayer(cid) and getCreatureStorage(cid, 10001, ~= 1) then...
  19. Cloow

    Multi teleports with storages

    I have no idea if this is even possible, i've been testing some stuff but cant get it to work. Anyway, when a player enter a certain tile the player will get teleported to the storage id it has. This is the one I need help with, I guess "checkpoint) then" is where it gets the error local...
Back
Top