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

    [Tutorial] Complie the TFS 0.4.

    I get disconected when trying to check for update at devcpp edit now i get this: maybe you could upload your dev++
  2. Dileck

    [GERMANY] Patservers PVP-E 7.6 is BACK!

    Noob detected
  3. Dileck

    Trully Exp Scroll

    In the character you are doing the test, are you exactly level 1000? also any console errors?
  4. Dileck

    How old is your brain?

    31 year old
  5. Dileck

    Lua Why doesn't this work?

    local extrarate = 7 function onUse(cid, item) setPlayerExtraExpRate(cid, extrarate) doPlayerSendTextMessage(cid,19, 'Your EXP rate is now ' .. extrarate .. '!') end You didnt type right extrarate.
  6. Dileck

    Scripter Looking to join a team

    Im looking for a good team, im able to do nice scripts in any section; Actions,Globalevents,Creatureevents and talkactions. I started to script some months ago and i need a good team to make a nice server. Some examples of scripts i have made: Talkaction to remove frags function onSay(cid...
  7. Dileck

    Ctrl + V

    Active connections: 17
  8. Dileck

    Lets Count To A Million!

    5529
  9. Dileck

    The Countdown [1000]

    879
  10. Dileck

    [REQUEST] Gesior ACC Link

    All the links are broken and cant find a working one someone reupload please. Very appreciated thanks.
  11. Dileck

    Function that sets a new level?

    Thanks ill try it then edit the post. EDIT: didnt work properly when trying to do negative.
  12. Dileck

    [Request] onUse Teleportation

    Haha no problem, glad i could help.
  13. Dileck

    [Request] onUse Teleportation

    --BY Waxel function onUse(cid, item, frompos, item2, topos) local text = "text here" location = {x=1, y=1, z=1}-- coordinates pos = getPlayerPosition(cid) doTeleportThing(cid, location) doSendMagicEffect(pos,32) doSendAnimatedText(pos, text, 100) return TRUE end
  14. Dileck

    [Actions/Movements] 2 Scripts 'easy' of PoI Quest (TFS 0.3.1 CryingDamson)

    First one --BY Waxel function onUse(cid, item, frompos, item2, topos) location = {x=1, y=1, z=1}-- coordinates pos = getPlayerPosition(cid) if item.uid == 11148 then doTeleportThing(cid, location) doSendMagicEffect(pos,32) return TRUE end <action uniqueid="11148" script="stone.lua"/> set...
  15. Dileck

    [Request] onUse Teleportation

    here --BY Waxel function onUse(cid, item, frompos, item2, topos) local text = "text here" location = {x=1, y=1, z=1}-- coordinates pos = getPlayerPosition(cid) doTeleportThing(cid, location) doSendMagicEffect(pos,32) doSendAnimatedText(pos, text, 100) return TRUE end Fixed something
  16. Dileck

    [Request] onUse Teleportation

    For TFS --BY Waxel function onUse(cid, item, frompos, item2, topos) local text = "text here" pos = getPlayerPosition(cid) doTeleportThing(cid, getTownTemplePosition(getPlayerTown(cid))) doSendMagicEffect(pos,32) doSendAnimatedText(pos, text, 100) return TRUE end and add <action...
  17. Dileck

    GlobalEvent Vip System

    You dot need to put coordiates,you just need set the unique id to the door.
  18. Dileck

    Function that sets a new level?

    I have searched for it but no luck, i mean a function like dosetPlayerLevel(cid,8) Thanks in advance
Back
Top