Jump to content

Z3R0

Members
  • Posts

    615
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Z3R0

  1. Why do u have .@online [.@bantog $] shouldn't that be .@online [0]
  2. Here to stay! I'm ready to get back into this and jump right into it
  3. Does RO work on a mac yet?
  4. What's wrong with just 3 announce lines? Wouldn't that accomplish the same feat?... Never mind forgot that was a global broadcast command... been a while... easier to just use timers and show a new message after x time... don't think you can do line breaks.
  5. Sadly one of the last posts I wrote was my engagement photos... we got divorced within 4 months because she cheated on me... gotta love life... with a new girl now been with for over 3 years and couldn't be happier!
  6. Hey Guys! I'm finally at a stable point in my life... Yes, it's been YEARS! I know, but so much has happened I can finally say that I am able to sit down, relax, and enjoy life. I got a great job, stable, and one in which I can actually do things that I wanna do, when I wanna do them. I code all day for Websites (not for work) but personal enjoyment, and I am going to get back into scripting as soon as I can. I missed you all, and I wanted to make sure I said that to everyone! It's good to be back. Z3R0
  7. Checking things out. Thinking about getting back into the swing of things here! I miss RO...

    Wasn't sure if rAthena was still kicking. People that know me get in touch with me please! Thanks!

    1. Show previous comments  1 more
    2. Everade

      Everade

      Things are still going as usual ;)

    3. Emistry

      Emistry

      My name is Z3R0. For five years, I was stranded on an unknown places with only one goal-- Survive. Now I will fulfill my account's dying wish -- to use the list of unanswered script request/support topic left me and bring down those who are poisoning my city. To do this, I must become someone else. I must become something else.

      Welcome back :D

    4. Z3R0

      Z3R0

      Love it!

       

  8. "Well, my idea is like releasing Promo Codes every week so it will be easy for me to add codes. which players need to race for the promo codes!" So I'm assuming codes can only be used 1x by 1 player (once used, it's used...)
  9. Can a promo code be used multiple times (different players?) or is it one time use only regardless of who used it?
  10. uh, be weary of that... there is no checks for spammin nevermind, didn't notice "GM" I always think that is "GUILD MASTER" and not "GAME MASTER" haha been out of the RO loop for a while, forgot the terms...
  11. Can you please elaborate exactly what you want it to do? The first two parts aren't really clear...
  12. Scripting for Dummies will continue. I apologize for my absence... There has been some complications with my family life @ home, and frankly, I just kind of fled from everything. In any case, needless to say, I will have a lot more time on my hands and I will be starting Scripting for Dummies again, once I get my new rig... Should be within the next month. Sorry everyone...
  13. Damn u emistry i just noticed that too haha
  14. is this script duplicated?
  15. Z3R0

    Refine NPC

    Are you wanting "help" or someone to do it for you?
  16. http://ea.dj-yhn.com...etinventorylist @inventorylist_id[] - array of item ids. @inventorylist_amount[] - their corresponding item amounts. @inventorylist_equip[] - whether the item is equipped or not. @inventorylist_refine[] - for how much it is refine So you can use the following function del_equipped_item(.@item_id) { getinventorylist; for (set .@a, 0; .@a < @inventorylist_count; set .@a, .@a + 1) { if (@inventorylist_id[.@a] == .@item_id && @inventorylist_equip[.@a]) { delitem @inventorylist_id[.@a], 1; goto L_item_delete; } } mes "Item Not Found"; close; L_item_delete: mes "Item Deleted"; close; } SIGH!!!! Damn you emistry, I didn't even see your post, and oddly enough we posted the exact same piece of code... lol
  17. 1) depending on revision u can use strcharinfo(3) to get mapname or the getmapxy() command... Then check an if against that map 2) because your check checks if #check == 1 which is what u ser it to and never unset it 3) store a variable for integer on char such as num_code_wrong and +1 to it in every wrong try... Use Switch (num_code_wrong) { case 1: mes "one wrong"; close; Case 2: mes "two wrong"; close; Case 3: mes "three wrong"; close; Default: mes "none wrong"; close; }
  18. ah ok, you meant changing my if to go "back forth" since previous and next both call the same function... that makes sense
  19. hate to break it to you, but the spoiler tag doesn't appear to be working, try changing to [ codebox ]
  20. Z3R0

    Request: Poker

    suggestion : create cutin that show multiple card / single card... it would be nicer...xD suggestion : create cutin that show multiple card / single card... it would be nicer...xD That's what I mean though, you can only show a single cutin else it gets replaced... so you would need an image for every possible card combination... Cutins do not stack, they replace...
  21. There might be... I've been out of the loop for a while... but if it works, it works? lol
  22. well party member adding isn't entirely TOO complicated, but there becomes a LOT of checks involved... I suggest look at getpartymember; and attachrid the problem however, is that you will also need to make sure you check getmapxy() and you can even then do the vicinity of the player near the person who killed the monster... aka, they must be within 50 cells away or w/e ... or even on the same map! http://ea.dj-yhn.com/index.php?c=getpartymember http://ea.dj-yhn.com/index.php?c=attachrid http://ea.dj-yhn.com/index.php?c=getmapxy
  23. Z3R0

    Request: Poker

    not to mention side bets... the other problem of course, is the ability to show the players their cards... BMP's aren't very useful here, since you can only show one at a time... so you would have to have an image for every possible combination... (lots o images... hooray!) and text based games, just aren't very fun...
  24. @ QQ... that doesn't check the condition WHEN the hair style is 26... it simply states that if .@menu is 2 or 3 that it will be 27 or 25.... aka, no other hair options at all... ONLY 27 or 25....
×
×
  • Create New...