Jump to content

Z3R0

Members
  • Posts

    615
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Z3R0

  1. Agreed. There's no reason not to help anyone regardless of their hosting setup. If you prefer not to help those that are using no-ip and home pc's, simply don't respond. Closing Topic
  2. Chapters 4, 5 and 6 of NPC Scripting for Dummies Has Been Posted

    1. Eucharist96

      Eucharist96

      Cool i wish next chapter will be post soon =)) its easy to learn if someone teaching you using video so you i can understand it well =)) \m/

  3. When you type your OWN ip in the browser, you are either using a LAN or LOOPBACK Address I'm assuming... Your Public WAN IP needs to be forwarded through your router to the destination LAN IP of the server hosting it
  4. Chapter 4, 5, and 6 are now uploaded
  5. About to link 5 more vids I don't know if that's sarcasm or should I be running for the hills? Kinda freaked out atm
  6. Z3R0

    Refund Script

    Here's what I have understood from it... You have 100+ different items... could be 100 could be 200 you don't know (so I've already determined this will need a setd / getd setup to use multiple "array lists" From there, you need to tell the npc you want to sell an item or item(s), each item id will have a different corresponding ticket value (aka another setd / getd array to match each list) I assume, since he wants to know about cards... you will need to use a NPC SELL SCRIPT to determine if the item does in fact have cards, if it does, skip over item and return back to user...
  7. Welcome to the New RAthena

  8. Can you give any explanation as to WHEN this occurs? I'm still thinking it's sleep2 -> sleep ... you don't need to keep RID since you are not keeping the player attached anyways...
  9. sorry my first IF check is wrong function name change if (!getgmlvl()) to if (!getgmlevel())
  10. Sounds like it's ALWAYS fun... lolz and exciting // forgot to mention I spend all my time online @ rAthena and no... IT does NOT mean "Information Technology" BAH HUMBUG IT = The IT Factor, and baby, I got it!
  11. still and moving yes, but would require you to check every second... (crazy checks) sitting... sadly no... although I think Brian was going to look into an is_sitting function lol
  12. sleep2 keeps RID? but you don't have an rid to keep ?
  13. yes, you can use the OnTouch and specify the x1,y1 for the OnTouch after the NPC's id... eg: prontera,158,173 script mynpc -1,10,10,{ } would make it so if anyone was within +10x or -10x and +10y and -10y of the npc, it would trigger the OnTouch: label...
  14. Not to mention it's the "Renewal" of the eAthena community -> RAthena
  15. Agreed, I doubt this is something we will look into a present time... Reasons: Time Restraints Not Emulator Related We're on Sourceforge Not an Independent Host the list goes on, but yea...
  16. Excluding GM's OnPCLoginEvent: // Increase Variable on NON GM Logins and Check Against 10 if (!getgmlvl()) { set .player_count, .player_count + 1; if (.player_count > 10) { set .player_count, 10; // Keep @ 10, to avoid incrementing this further... mes "I'm sorry you cannot enter..."; close2; atcommand "@kick " + strcharinfo(0); } } OnPCLogoutEvent: // Decrease Variable on NON GM Char Logout if (!getgmlevel()) { set .player_count, .player_count - 1; } }
  17. Topic Moved, Until IP Downloads is in place, CP Downloads is best place for this.
  18. what is a "vendor" ???? you want to differentiate active 10 players vs vendors? seems kinda pointless right?
  19. depends on what the "Game" is, and how it's ran, but yes, anything's possible... create a counter variable, either $var or .var increase it's amount +1 on each character if ($var or .var == 10) { mes "Sorry Max Players reached"; close; }
  20. Ok Everyone! I have posted the curriculum in which I will be following and creating the tutorials for... If you have any questions or would like to see something added to this, please feel free to reply here
  21. agreed... unless you build the template on your server side, and that's the only way they can use it... in which case, it would be a lot more complicated... just put it there and pray for the best, unfortunately with free-ware, unless you are going to check EVERY site on the net, you will not know who has and hasn't used your template with your credits...
×
×
  • Create New...