• 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!

Search results

  1. Redseb

    Editing the skill name in OTC

    You can edit the function init(), terminate() and refresh() Deleting the: onMagicLevelChange = onMagicLevelChange, onBaseMagicLevelChange = onBaseMagicLevelChange, and the: onMagicLevelChange(player, player:getMagicLevel(), player:getMagicLevelPercent())
  2. Redseb

    New Slot

    What files have you edited (otc/server)? Did you edit anything server-side?
  3. Redseb

    Give Level

    Then: function onThink(interval) local round == TRUE --If the player will go to the next level at 0% or if he will get the amount of exp needed to go to the next level (0 to 100%). for i, v in pairs(getPlayersOnline()) do if getPlayerStorageValue(v, 252526) == 0 then return...
  4. Redseb

    Give Level

    (6, 7)if getPlayerStorageValue(cid, 252526) == 0 then else ^ Error. Do you want to give level only to players that are level 20? Or all the players? Try this: function onThink(interval) local round == TRUE --If the player will go to the next level at 0% or if he will get the amount of exp...
  5. Redseb

    Name Chance in forum?

    You're welcome!
  6. Redseb

    Name Chance in forum?

    You need otland premium. Then you can change it 1 time every month.
  7. Redseb

    It's illegal in some way all of this?

    Yeah, but Nintendo is another matter : P I don't think CIP will sue anyone. But do not copy sprites from another company they could sue you ._.'
  8. Redseb

    Fast Attack 0.3.6 TFS

    I know.. this it why I said it won't help him.
  9. Redseb

    Can't put item in right hand on GM /addshop

    Any error? If not, it is probably a sources error. Does it happens with players too?
  10. Redseb

    lms requset

    He is not sharing.. its a question. Are the scripts with the correct name?(lastmantp.lua and lastman.lua) And the positions? His post was in mar 10, 2013 -.- Sorry.
  11. Redseb

    Doubt about VIP System

    Yes. That is exactly it. As Zbizu said, you should use mock's system. But you can use others, if it don't use the premium as vip.
  12. Redseb

    Fast Attack 0.3.6 TFS

    First, you need a distribuition of the souces. Then just open creature.h Search for: #define EVENT_CREATURE_THINK_INTERVAL Then change the value. like: #define EVENT_CREATURE_THINK_INTERVAL 100 And then compile it. If you have an edited distribution, it would be bad to use this way. I...
  13. Redseb

    Doubt about VIP System

    Well.. It varies... What is your script? If it use the premium account as vip account, then yes. If if uses a different storage, you won't need to edit it.
  14. Redseb

    Fast Attack 0.3.6 TFS

    He did that already. It won't work, since the creature think is 0,5 sec. But as Evil said, you CAN attack fast if you force the game to check the player's actions faster (like moving or re-attacking). If you want the player to attack faster even without moving, you need to edit the sources.
  15. Redseb

    English pokemon ot?

    Its kinda hard to find English servers, since the best pokemon's server were made by Brazilians (most of them) : p If you are talking about the dialogs, pa, ps and pxg are in English.
  16. Redseb

    Fast Attack 0.3.6 TFS

    Yes.. It'll work. The reason the server can't to let you attack so fast is because it do not load the player's actions this fast. If you make it think every 0,1 sec it will load player's actions very fast.
  17. Redseb

    Solved Player Broadcast system 0.3.6 TFS

    You're welcome! I'm glad it worked : )
  18. Redseb

    Solved Player Broadcast system 0.3.6 TFS

    That's really weird... My script worked here. Look.. I have this script, that doesn't use addCondition... Try it. --- Config --- local levelReq = 200 -- Level needed to use the command. local minChars = 3 -- How many characters may you write as minumum? local group_id = 5 -- Group to not use...
  19. Redseb

    Solved Player Broadcast system 0.3.6 TFS

    The original script works? (function onSay(cid, words, param, channel) if(param == '') then return true end doPlayerBroadcastMessage(cid, param) return true end)
  20. Redseb

    Solved Player Broadcast system 0.3.6 TFS

    Yeah.. Just use the last code I posted, it'll work.
Back
Top