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

    [USA] Nubwarz War Server (8.6)

    Starting to add new~custom spells! :D Also, what would you guys like better? Start at 70 or 50?
  2. E

    [USA] Nubwarz War Server (8.6)

    Can you close this thread please? The server is not completed enough for it to be up and running It will however come back up shortly! Thank you!
  3. E

    Solved Addskill causing intense lag

    I've looked into the sources and this is what I could find: Luascript.cpp: int32_t LuaInterface::luaDoPlayerAddSkillTry(lua_State* L) { //doPlayerAddSkillTry(uid, skillid, n[, useMultiplier = true]) bool multiplier = true; if(lua_gettop(L) > 3) multiplier = popNumber(L); uint64_t n =...
  4. E

    Solved Addskill causing intense lag

    Heya everyone, I finally got my "Skill Reset" script working but it causes crazy lag when a new character is created and logged in (or whenever someone logs in with 10~ skills or 0~ magic level) Here's the script: function onLogin(cid) local playerVoc = getPlayerVocation(cid) local samount =...
  5. E

    Problem with adding skills..

    I'm getting the same problem :/ http://otland.net/f16/skills-lock-182283/#post1764537
  6. E

    Solved Skills lock~

    I need help with this script, I made it myself but it doesn't really work correctly... I tried to make it so if you're a knight and you get below 75 axe/sword/club then you will get it back to 75 (100% till 76) etc.. This is how I tried it: function onLogin(cid) local playerVoc =...
  7. E

    [Compiling Help]

    Hey guys, when I try to compile with Luke DevCpp and I get to luascript.cpp when compiling I get this error: I've tried getting a new dev-cpp and updating the boost but I can't figure out what's wrong :( Thank you! ;)
  8. E

    Spell Upgrade. HELP

    Alrighty will do :) Thank you guys for being so nice and helpful :)
  9. E

    Spell Upgrade. HELP

    Thank you though for responding so quickly :)
  10. E

    Spell Upgrade. HELP

    Woot! It works! :D function onAdvance(cid, skill, oldlevel, newlevel) local storage = 16002 local levelstorage = 16003 if skill == SKILL_LEVEL then if getPlayerStorageValue(cid, levelstorage) == -1 then setPlayerStorageValue(cid, levelstorage, 8) end if...
  11. E

    Spell Upgrade. HELP

    It works! :D Thank you so much but btw I found out a bug yesterday that I feared would happen :/ but when you die and lose a level, if you get that level back you will get an extra point.. It's this script: function onAdvance(cid, skill, oldlevel, newlevel) local storage = 16002 if skill...
  12. E

    Spell Upgrade. HELP

    Hehe :) Thanks :P But is there any way so that you don't have to be specific so instead of saying "Frigo Strike" you can say "frigo strike" and it'll still work? I changed this part: Since I couldn't figure it out :/ Also, how do you make it so when they say Example: Frigo Strike, the NPC will...
  13. E

    Spell Upgrade. HELP

    Okay :) I'll try that when I get back home :P but check out what I changed to the NPC so it makes it have a little more "Effect" also I added a thing so that you can have more then 5 on one spell or less on another etc... Here it is :P local keywordHandler = KeywordHandler:new() local...
  14. E

    Spell Upgrade. HELP

    Woot! It works! :D Thank you I never even thought about that :P Well, here it is the finished spell for Frigo Strike: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_ICEDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_ICEATTACK) local...
  15. E

    Spell Upgrade. HELP

    Everything works perfectly! Thank you so much Limos! I would give you more REP if I could but Otland won't let me :( I got the spell to work but I'm trying to change the combat formula it used to be this: setCombatFormula(distanceCombat5, COMBAT_FORMULA_LEVELMAGIC, -0.4, 0, -0.5, 0) But I'm...
  16. E

    Spell Upgrade. HELP

    Alright :) Thank you very much! I will try it out when I get home! :D
  17. E

    Spell Upgrade. HELP

    Thank you Limos! It works perfectly :) But can you help me make an example for the spell edits? I've never done it before :/
  18. E

    Linux Compiling 0.2.14.r101

    I'm having the same problem except I'm using Windows. I'm getting this error:
Back
Top