Jump to content

Kenpachi

Members
  • Posts

    764
  • Joined

  • Last visited

  • Days Won

    4

Kenpachi last won the day on November 23 2012

Kenpachi had the most liked content!

About Kenpachi

  • Birthday 04/03/1984

Profile Information

  • Gender
    Male
  • Location
    Germany

Recent Profile Visitors

11021 profile views

Kenpachi's Achievements

Poring

Poring (1/15)

220

Reputation

9

Community Answers

  1. Dafür brauchst du keine SQL-Abfrage. Es gibt eine Variable namens #CASHPOINTS.
  2. Wieso sollte das hier fehl am Platze sein, ist doch Client-Entwicklung? oO @Topic: Guck dir den hier mal an: http://rathena.org/board/topic/65959-packetparser-yommys-amazing-ragnarok-packet-analyzer-framework/
  3. Das geht nicht. Jedes Monster muss eine eindeutige ID besitzen. Woher sollten sowohl Server, als auch Client, sonst wissen, ob du nun gerade den blauen oder den grünen Poring meinst?
  4. Das steht im Quelltext des Clients. Reverse engineering ist das einzige, was da hilft. Im Groben läuft es aber so ab: - Server sendet Datenpaket für einen Mobspawn - Client empfängt Datenpaket - Client wertet Datenpaket aus - Client zeigt den Mob auf der Map an Möglicherweise kannst du deinen Plan ja auch umsetzen, indem du die vom Server gesendeten Pakete modifizierst...
  5. Kenpachi

    skill.db

    0x02 + 0x08 = 0x0A 0x0A + 0x40 = 0x4A http://programmerscalc.com/ (Windows has a built-in calculator, too.)
  6. Nope, as far as I can see there is no feature like that.
  7. You started a quest with another character. If you can't remember anything, just abandon the mission and start a new one...
  8. You can't show just the message on top of the window (2). Both announce and message will show the message inside the chat box and at the top of the screen... You can either have the message shown in 1 and 2 (announce/message), or only in 1(dispbottom).
  9. Well, nobody wants to read every single line and check it for syntax errors nor check your logic. Give us an error message or decribe the unwanted behaviour.
  10. ../src/map/status.h define MAX_REFINE 20 (Don't forget to recompile.)
  11. if(Class == Job_Novice) // Novice else if(Class == Job_Mage) // Mage ... Check const.txt for more job constants.
  12. Aaaah, so his question was: "How do I check which map was entered?". I see... rqueen, your script wont work, because .@mapname$ doesn't have a value. Try this: OnPCLoadMapEvent: if (strcharinfo(3) == "bat_room" && query_sql("SELECT login.account_id FROM login LEFT JOIN `char` ON login.account_id=`char`.account_id WHERE login.last_ip=(SELECT last_ip FROM login WHERE account_id="+getcharid(3)+") AND `char`.online=1", .@account_id) > 5) { dispbottom "You exceeded the maximum accounts allowed in this area."; warp "new_pront",156,177; } end;
×
×
  • Create New...