• 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. Thaian Citizen

    [7.72] OTHire 0.0.1b - Based in OTServ Trunk (Latest)

    Well yea, but I cannot reproduce this with all walls.. also it does only affect mobs, me as player cant shoot pass walls, also not mwalls
  2. Thaian Citizen

    ZnoteAcc 1.5 Paypal Success But No Points Added

    Well, as I posted before, the version on github only has one difference in ipn.php, this:
  3. Thaian Citizen

    Solved Skill Quest error with Knight

    Before you had: doPlayerSetMagic(cid, getPlayerMagLevel(cid) + 4) Now you have: doPlayerAddMagLevel(cid, MAGIC_LEVEL, 6) which of the functions exist? Both maybe? If yes, is there like a documentation coming with your server that is showing info to these functions?
  4. Thaian Citizen

    Solved Skill Quest error with Knight

    post the part of script that checks for mage voc and raises mlevel
  5. Thaian Citizen

    Solved Skill Quest error with Knight

    remove the +, just the number should be there, sorry
  6. Thaian Citizen

    Solved Skill Quest error with Knight

    Yea I almost thought that, that is because your function already checks for players actual skill then adds the amount you specify so right now it adds the players mlv +4 or the players skill +12 change to doPlayerAddSkill(cid, SKILLNAME, +12) ((removing getPlayerSkill(cid, skillname) line))...
  7. Thaian Citizen

    Solved Skill Quest error with Knight

    Oh, yea there you have the reason, the script is perfect, just replace all doPlayerSetSkill with doPlayerAddSkill
  8. Thaian Citizen

    Solved Skill Quest error with Knight

    That is strange, that should only come when the function doPlayerSetSkill doesnt exist, but it does exist
  9. Thaian Citizen

    Solved Skill Quest error with Knight

    Reset it to this state please, and tell me what the error is, and if it happens with all characters or just some vocations function onUse(cid, item, frompos, item2, topos) local pS = getPlayerStorageValue(cid, 2357) local pV = getPlayerVocation(cid) if pS > 0 then...
  10. Thaian Citizen

    ZnoteAcc 1.5 Paypal Success But No Points Added

    I added that it inserts a VERIFIED into my db I looked for further things, in paypal, under my IPN history, I could find the ipn message that paypal sends, maybe you could see something here that I missed transaction_subject= &payment_date=11:49:48 Mar 21, 2016 PDT &txn_type=web_accept...
  11. Thaian Citizen

    ZnoteAcc 1.5 Paypal Success But No Points Added

    Okke, that is all set, doesnt work... Tried several times... :/ I use the one that was available with OTHIRE to work with that distro... The way I see it is that the only thing that could make this not work is if that is an outdated ipn.php / buypoints.php script But from what I see the actual...
  12. Thaian Citizen

    Solved super sudden rune TFS - 1.1

    maybe in your config.lua there is something like runesUseCharges = true for me it says remove_rune_charges = true set that to false
  13. Thaian Citizen

    Gate with uid quest for pass

    I dont know if that changes with distro.. But the default is you just give that quest door a certain unique id then when the player has the unique id as storage set to 1 he can pass example: - place a quest door, give it uid 25000 - player has storage 25000 = 1 -> he can pass - player has...
  14. Thaian Citizen

    ZnoteAcc 1.5 Paypal Success But No Points Added

    I don't see how putting that into a folder could change anything? :confused: But what could be wrong about my ipn.php? It's posted in the opening post..
  15. Thaian Citizen

    Solved Skill Quest error with Knight

    Yea, I see that used to work before,too. Can you see what's wrong with my latest postet script?
  16. Thaian Citizen

    Solved Skill Quest error with Knight

    Oh, I think the SKILL_CLUB, SKILL_AXE etc. must all have "" like "SKILL_CLUB"... Because the rror shows, right now he doesnt know where to set the skills he cant find the given skill, so I think it misses " " I'm not mad, but this is kind of one very very very very easy script.. Just a big...
  17. Thaian Citizen

    ZnoteAcc 1.5 Paypal Success But No Points Added

    IPN in paypal is activated and it goes to my right address -> http://servername.no-ip.org/ipn.php But my ipn history, which I now searched, shows this: Neuer Versuch... that means New try... or Retry... What is going wrong? I don't understand where the misstake happens so I can't correct it :/
  18. Thaian Citizen

    Solved Skill Quest error with Knight

    I'm getting frustrated with this already lol now everything in onUse: function onUse(cid, item, frompos, item2, topos) local pS = getPlayerStorageValue(cid, 2357) local pV = getPlayerVocation(cid) if pS > 0 then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Voce ja fez a...
  19. Thaian Citizen

    ZnoteAcc 1.5 Paypal Success But No Points Added

    Bump~ I checked again, cURL is installed, and enabled paypal ipn redirects to http://MYSERVERNAME.no-ip.org/ipn.php sent 1€ again, page says success, no points added, no entry in znote_paypal(acc=0, points=0, price=0) just an connected from ip xxxxxx does nobody know how this stuff works? Im...
  20. Thaian Citizen

    Solved Skill Quest error with Knight

    Maybe it doesn't pass the cid right for some reason.. I moved the set storage thing: function raiseMagic(cid) doPlayerSetMagic(cid, getPlayerMagLevel(cid) + 4) doSendMagicEffect(getPlayerPosition(cid), 28) doSendAnimatedText(getPlayerPosition(cid), "Magic Up", TEXTCOLOR_BLUE) end...
Back
Top