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

    Creature Looktypes

    Can you please re upload the images please. The link is broken.
  2. Phemus

    Lua Magic level limit and level limit

    I have this script for a server where there is a limit for magic level. It is supposed that after reaching to that level of magic, the player can't get more experience in magic level. This is the script. local limit = 120 local message = "You have reached the magic level limit." function...
  3. Phemus

    10 kills and a reward

    My bad. I had a wrong line in login.lua. Now it worked perfect. Thank you so much both of you guys :)
  4. Phemus

    10 kills and a reward

    What do you mean? I added it to creaturescripts and then in creaturescripts.xml I added this: <event type="kill" name="pvp-kill" event="script" value="soulorb.lua"/> I'm using TFS 0.4
  5. Phemus

    10 kills and a reward

    Okay, I already did that. But, still it doesn't give me the reward. I changed to 3 kills, but nothing happens. This is the script: function onKill(cid, target) if isPlayer(target) then setPlayerStorageValue(cid, 10001, getPlayerStorageValue(cid, 10001) + 1) if...
  6. Phemus

    10 kills and a reward

    I don't think it works, it doesn't give me the item at the 6th kill. Do i have to add the line registerCreatureEvent(cid, "pvp-kill") in login.lua? Also, this is the script when i changed it to TFS 0.2/0.3 function onKill(cid, target) if isPlayer(target) then local player =...
  7. Phemus

    10 kills and a reward

    I'm working on a war server and I'm trying to make a script where someone kills 10 players and he receives a reward like a soul orb. If the player gets killed before reaching to 10 kills, he would need to start again. The problem is that i don't know how to start the script. I hope that can...
  8. Phemus

    Lua Map change and exeptions

    My bad. I put a "else if" instead of an "if" However, now i get this error and i don't get teletranspoted. It says the message and gives you health and mana but it does not teleport.
  9. Phemus

    Lua Map change and exeptions

    I gives me the same error...
  10. Phemus

    Lua Map change and exeptions

    Hello! I was working on a script for a friend where the map has to change on a certain time, but if someone is doing a quest, they don't get teleported to the new town. Here is the script: local config, new = { minTownId = 1, maxTownId = 3 }, 0 local t = { fromPos = {x = 1004, y = 1023, z = 7}...
  11. Phemus

    It's illegal in some way all of this?

    No one is selling stuff... They are called donations. People donate to your server and you reward them with a special item on the server.. idk..
  12. Phemus

    Lua Items on a chest

    Hello again... so i have a script that does not work.... i have been trying to fix it but it makes me a headache. This is the script: -- vocs ----- -- actionid: 8605 sorc -- actionid: 8606 druid -- actionid: 8607 pally -- actionid: 8608 knight local firstItems = { { -- SORC ITEMS...
  13. Phemus

    Solved Help with Script

    Thank you but i solved it :)
  14. Phemus

    Solved Help with Script

    I tried to make it as creaturescripts but i don't know why does it doesnt work on the server...
  15. Phemus

    Solved Help with Script

    Hi, I'm helping a friend with a script but it seems that i also need help... This is the Script: -- vocs ----- -- actionid: 8605 sorc -- actionid: 8606 druid -- actionid: 8607 pally -- actionid: 8608 knight local firstItems = { { -- SORC ITEMS {itemid=2173, count=1}, -- hat of the mad...
  16. Phemus

    When I kill monsters no exp :'(

    Have you tried to change: rateExperience = 2.0 to a higher number?
  17. Phemus

    Tables and EXP

    Thank you! I solved it by just changing the server XD. btw... How can i understand this experience by killing? I want it to reduce the exp on kill. How can i do that? Which number is it?
  18. Phemus

    Solved Script error

    Same error - - - Updated - - - Never mind... I would use the first one.. Thank you anyway :)
  19. Phemus

    Solved Script error

    [16/08/2013 21:55:10] [Error - Action Interface] [16/08/2013 21:55:10] data/actions/scripts/by phemus/cream cake.lua [16/08/2013 21:55:10] Description: [16/08/2013 21:55:10] data/actions/scripts/by phemus/cream cake.lua:2: bad argument #2 to 'random' (interval is empty) [16/08/2013...
  20. Phemus

    Solved Script error

    Thank you, it works! Is it possible that when you use it and you get an outfit... you don't get the same outfit the next time someone uses it?
Back
Top