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

    Solved Fire Bomb, Help!

    Hey, i created a monster called Fire Bomb that executes this script. But when i spawn several Fire Bombs i get this error message: [23/04/2015 12:03:56] [Error - CreatureScript Interface] [23/04/2015 12:03:56] In a timer event called from: [23/04/2015 12:03:56]...
  2. S

    Modal Window

    Tested it on a 9.81 server and got this: [24/10/2014 18:56:29] Lua Script Error: [Action Interface] [24/10/2014 18:56:29] data/actions/scripts/teleport_window.lua:onUse [24/10/2014 18:56:29] data/actions/scripts/teleport_window.lua:2: attempt to call global 'ModalWindow' (a nil value)...
  3. S

    Modal Window

    Hello, I am looking for a way to insert a modalwindow in my server, but it does not know about this feature (0.3.6pl1). Which version do I need at least to be able to use this function and where can i get it? Many thanks!
  4. S

    Problem with "getItemAttribute"!!

    the problem is still not solved, but I found another solution. thank you all anyway
  5. S

    Problem with "getItemAttribute"!!

    instead of "armor" its actually "description". First the script that changes the attribute: attributes = { ["the reaper"] = {skill1 = 'Melee Skills', skill2 = 'Magic Level'}, ["berserk"] = {skill1 = 'Melee Skills', skill2 = 'Crit Chance'}, ["the forest runner"] = {skill1 = 'Distance...
  6. S

    Problem with "getItemAttribute"!!

    My server is called "[8.54] The Forgotten Server 0.3.6pl1 (Crying Damson)". Same problem with Evil Heros solution. Any ideas? :/
  7. S

    Problem with "getItemAttribute"!!

    When i do it like Limos way i get this error: [01/07/2014 14:57:12] [Error - MoveEvents Interface] [01/07/2014 14:57:12] data/movements/scripts/upgrades.lua:onEquip [01/07/2014 14:57:12] Description: [01/07/2014 14:57:12] (luaGetItemAttribute) Item not found [01/07/2014 14:57:12] [Error -...
  8. S

    Problem with "getItemAttribute"!!

    Because ive another script that increases a few attributes of the item. do i use 'item.itemid' so it is loaded from the items.xml so that the attached attributes are not included as well. So i need somthing with item.uid.
  9. S

    Problem with "getItemAttribute"!!

    Yes but i need the item.uid. when i use this codeit causes the error message "attempt to index a boolean value". function onEquip(cid, item, slot) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "This item has " .. getItemInfo(item.uid).armor .. " armor.") return true end
  10. S

    Problem with "getItemAttribute"!!

    Hello, I'vea problem and found no solution in the forum. This line of my code causes error messages. function onEquip(cid, item, slot) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "This item has " .. getItemAttribute(item.uid,"armor") .. " armor.") return true end Error...
  11. S

    Function OnStatsChange Problem

    bump bump
  12. S

    Function OnStatsChange Problem

    bump
  13. S

    Function OnStatsChange Problem

    Hey, When I'm using this script, the player gains no damage and the script does not give the player mana! Why does it now work? function onStatsChange(cid, attacker, type, combat, value) if type == STATSCHANGE_HEALTHLOSS then if getPlayerStorageValue(cid, 849343) > 0 then...
  14. S

    Problem with onEquip/onDeEquip Item

    no, nothing. is it possible that it has something to do with the fact that the item is a ring because there is already a function for rings? ;) In movements.xml <movevent type="Equip" itemid="2213" slot="ring" event="function" value="onEquipItem"/> <movevent type="Equip" itemid="2215"...
  15. S

    Problem with onEquip/onDeEquip Item

    Hey Otland, I've a short problem. Can u tell me why it doesnt work? ;) (Using The Forgotten Server 0.3.5) In movements.xml <movevent event="Equip" itemid="2213" slot="ring" function="onEquipItem" script="elitespellbooks.lua" /> <movevent event="DeEquip" itemid="2215" slot="ring"...
  16. S

    Small Beginner Problem

    I have just to slide the files into the folder of my server and then i can edit them as i want? Nothing else is required? :o
  17. S

    Small Beginner Problem

    And what do I do now? Simply copy the files in the server folder? :D
  18. S

    Small Beginner Problem

    Hey. I'm using The Forgotten Server 0.3.5 and have no idea where the folder "source" can be found. In the old 7.6 servers, the "source" were still present in the normal server folder. I'm sure that this is a simple question, but i can not solve it :$ Hope you help me, Sytoxian ;)
  19. S

    Vocation reset

    same problem.. somebody found a solution?
  20. S

    Need a Quest (like Annihilator and/or Arena)

    HI all, im working on a quest which is similar to the annihilator quest. a player walks on a field with uid=40025. he gets teleported to x=2067, y=1021, z=10. at the same time, a npc called casimir is teleported from x=2066, y=1018, z=9 to x=2066, y=1018, z=10. now the player and casimir are in...
Back
Top