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

    Create Character Fail

    You need to find the line of script that checks for each field. and make it not check for those 2 fields that you removed. you can ctrl+f to search for the error messages: "The city field is required" Or, ctrl+f "field is required"
  2. Swiff

    need scripts

    try this if not work: viparea = {x=111, y=111, z=7} -- where player get teleported function onUse(cid, item, fromPosition, itemEx, toPosition) if item.actionid == zzzz and (isPlayerVip(cid) == TRUE) then -- zzzz is the actionId you set on the item on map doSendMagicEffect(topos, 12)...
  3. Swiff

    need scripts

    @ luks777 Yes it's a source edit for clients below 8.6 In 8.6+ I believe it's alredy implemented. I'm using 8.54 myself so I can't help you much there You need to make this in actions/scripts/other vipstatue.lua and in actions.xml <action actionid="xxxx" script="other/vipstatue" /> XXXX is the...
  4. Swiff

    need scripts

    This is my first script I made for someone else, so I'm not 100 percent sure it's coded the right way, but should be if you have the VIP storage. 1: function onUse(cid, item, frompos, item2, topos) viparea = {x=111, y=111, z=7} -- where player get teleported if...
  5. Swiff

    Compiling damage owner?

    I'm guessing this is an addon for the faulty source edit. Not a replacer for that specific code? I'm not sure if it'd be possible to compile without having the complete edits. I might try this, thanks for your help.
  6. Swiff

    Lua Problem with a script

    I'm just curious, I'm no lua pro, honestly I'm not good at all. I just recently learned that you make local for one script only, to use in several spots or to easily change. I'm just curious why he'd make one just to change it later. I can probably not help you with this script, I don't have...
  7. Swiff

    God's can't enter houses

    Well, just copy our posted flags for god and paste into ur god liek so: <?xml version="1.0" encoding="UTF-8"?> <groups> <group id="1" name="Player"/> <group id="2" name="Tutor" flags="10170989650439" customFlags="58918914" access="1" violationReasons="10" nameViolationFlags="2"...
  8. Swiff

    God's can't enter houses

    Go to talkactions.xml and change the access for whatever command you want for what: <?xml version="1.0" encoding="UTF-8"?> <talkactions> <!-- Gods --> <talkaction log="yes" words="/addskill" access="5" event="function" value="addSkill"/> <talkaction log="yes" words="/attr"...
  9. Swiff

    God's can't enter houses

    I'm using defaults for 0.3.6pl1, that's what I posted. So use them, I haven't had any problems with them (tested and used for years)
  10. Swiff

    Lua Problem with a script

    What is this: local addons + local numero = addons Why change addons to numero when it's alredy stated?
  11. Swiff

    Solved Premium area in ot land.

    I think there's a bit more support(or faster), access to the newest forgottenserver files, such as distributions and datapacks, or source code if you prefer(If I don't remember wrong).
  12. Swiff

    God's can't enter houses

    What Dom said to do in the database: Or in XML folder groups.xml: <?xml version="1.0" encoding="UTF-8"?> <groups> <group id="1" name="Player"/> <group id="2" name="Tutor" flags="16809984" customFlags="2" access="1" violationReasons="4" nameViolationFlags="2"/> <group id="3"...
  13. Swiff

    Feature Increase player damage

  14. Swiff

    Compiling damage owner?

    Thanks tetra. I will check my current cpp file and compare those lines. Well the original looks like this; void Creature::drainHealth(Creature* attacker, CombatType_t combatType, int32_t damage) { lastDamageSource = combatType; onAttacked(); changeHealth(-damage); if(attacker)...
  15. Swiff

    Lua prevent cheat

    I think y'all misread. He know there's anti MC, but he need to fix his script that gives players golden nuggets. @ Legoland But to do that, We'd have to see your nugget script to put restrictions in it. A "elseif getplayerIP == getKiller ip then return false" ;D (I don't think there's a...
  16. Swiff

    Monster "absorb" player spell

    Bump! I really need, for example. dragonlords to heal their fellow dragons when they hit them with their fire AoE
  17. Swiff

    im looking for spr editor

    Yeah, you'll have to search for a program that re-scales your pictures into 32 pixels, or 128 pixels and then cuts them into 4 pieces. There's no program that will auto-replace them since the order of the sprites in the tibia.spr is pretty messy. You'll have to replace them manually
  18. Swiff

    Items.xml Item attributes list

    Where can I find this for my server? I am sure I had a reflect damage attribute. And I'm pretty sure I don't have anything that makes my spell x% stronger. Whcih rev/distro is this? <attribute key="increasemagicpercent" value=""/> is most likely CONDITION_PARAM_STAT_MAGICLEVELPERCENT = 34...
  19. Swiff

    item that gives outfits

    http://otland.net/threads/separated-addons-in-addon-doll.155969/#post1567262 <- give outfit + addon reference: http://otland.net/threads/addon-doll-you-cant-get-addon-if-you-havent-an-outfit.163444/ <- only give addon
  20. Swiff

    im looking for spr editor

    http://otland.net/threads/tidus-spr-editor-v1-5.162171/ I used search in upper right corner :) tested and works (8.54). Extracts and compiles. just edit away with something like gimp(google it) or if you have your own prefered software Edit: sorry I misread abit tired here. I thought you...
Back
Top