Jump to content

PACI

Developer
  • Posts

    402
  • Joined

  • Days Won

    18
  • Feedback

    0%

Everything posted by PACI

  1. You can't do this without being at a when-statement.
  2. And where's the problem? Exactly because you're between 50 and 80 it says the message. But if you want the opposite, just write: if not ( *your code* ) then
  3. if pc.get_level() >= 80 and pc.get_level() <= 50 then Wtf... How can this ever be possible? Whatever your level is, this codition is always false, you're saying this: if the players' level is superior or equal than 80 and minor or equal than 50 then do something But how can a number be >= 80 and at the same time <= 50? Try this anyway: if pc.get_level() >= 50 and pc.get_level() <= 80 then
  4. Nobody uses such old core rev. nowadays. You should and you must give a try to newer ones (or even use the source like others) instead.
  5. yea many people is kids and use old lua quest. but is better write quest on c++ and compile I like to write quests and I like lua, does that makes me a kid?
  6. Yeah, good point. I forgot to take a look to those stones. I've just seen a shield with applytype 95, which is APPLY_RESIST_WOLFMAN, and I didn't think about the spirit stones. Okay, new download at the first post. Thanks Agility.
  7. With: when login with string.find(pc.get_name(), "%[VIP%]") begin should work fine. 'Cause some functions don't read some special characters (like [] )
  8. Okay, that's now fixed again, I guess. Thank you. New download at the first post.
  9. I made some updates to the tool, check the first post for further information.
  10. Actually it wouldn't Denis, 'cause here: if (string.len(pw) >= 6 and string.len(pw) <= 12) and (string.match(pw, "%W") == nil) then pw wasn't declared, and you want to check the password variable content, so instead of pw it must be password. Also, maybe I'm wrong, but some special characters (e.g: say("~smth~")) don't work, so I guess you might add a space at the beginning of your send_letter(). Anyway, you should check what your syserr says.
  11. Try with this: function validate_as_password(pw) return (string.len(pw) >= 6 and string.len(pw) <= 12) and (string.match(pw, "%W") == nil) end
  12. PACI

    Pretoria

    The main language is english, you can only use another language at the Private Servers section.
  13. PACI

    Pretoria

    The complete thread don't you think?
  14. PACI

    Pretoria

    In english please.
  15. Your portuguese and I know it. Sorry but I'm Spanish. Just because I can talk and write in portuguese doesn't mean I'm portuguese. The main language here is english, does that make us english people? Of course not. Also, this has nothing to do with the thread theme.
  16. Do that by yourself, or pay someone to do it for you.
  17. sprintf(szText, "Lv %d", level); Search in InstanceBaseEffect.ccp Best Regards, Can BARAN... Wauw! Developer CAN BARAN! Well. At least he didn't post a binary saying that it was the sln.
  18. lol he's trying to help you by teaching you how to write better quests without using useless code n shit, and you're answering bullshit. That's bad, really bad. In this case, teaching you how to write queries.
  19. Wolfman uses claws as weapon, so I guess there'll be a defense against claws.
  20. cmdchat() works with login event. And for the quest flag thing, you can actually use pc.setf instead.
  21. Are you retarded or smth? Next time write your own skype ID instead of other's.
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.