Jump to content

KaitoKid

Members
  • Posts

    268
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by KaitoKid

  1. You shouldn't diff your client with HKLM to HKCU Or if you really insist on diffing that patch to your Client then you should also use a Setup.exe that has been patched also with HKLM to HKCU
  2. Did you use a compatible LUA/LUB file for your client?
  3. Yes
  4. Agree
  5. Do this code will trigger the whole NPC on the script? I mean for duplicated NPC's.. If it is a duplicate NPC then yes
  6. SVN would be better.
  7. Isipin mo na lang... kRO files - CLIENT Side rAthena Files - SERVER Side
  8. dito sa easy to use LUA-LUB compiler
  9. Mas maganda siguro kung gumamit ka na lang ng DIFF Patcher. eto po yung SVN Repository nila LINK eto yung post ng author LINK I am using client 2011-08-10 Supported po yung Packet obserfurcation till 2012 Clients.
  10. Gamitin mo na lang ang sa pRO... I am using it and don't have problem with it. ( Unless gusto mo lahat ng kRO Headgears then go for kRO )..
  11. Complete 3rd Class Support
  12. I don't think no one would do that for you... If you want to have your own custom map either you pay someone to do it for you or you make your own. ...
  13. This might help you. http://www.eathena.ws/board/index.php?showtopic=279640
  14. Thanks for the snippet!. Very useful
  15. I lol'd at your topic title I thought "NPC now showing" BTW. If you mean not showing did you added it on your scripts_custom.conf??? and did you put it on the proper directory that you have entered on the scripts_custom.conf?? and also the same file name you have entered on the scripts_custom.conf??? and from your screenshot if you won't be using those scripts in those errors you should also remove their entries at your scripts_custom.conf
  16. I told you before know your client.exe date that you are using and then find a LUA/LUB date that is the same or near with your client.exe date
  17. I think your LUA/LUB files are incompatible with the client you have been using.
  18. I agree with Matrifox. If you're still testing your server don't make it a GRF first so that you can simply determine some errors errors regarding your client file.
  19. In order to determine what LUA/LUB to be used. Know first what is the date of the client that you've been using. Then find it here if you can find a LUA/LUB that is the same or near to your client's date.
  20. For the old clients you can get it here It comes with a diff patcher also.
  21. Hey guys, I found this very useful and must have command for GMs created by Ind here I tried applying from my rAthena and I got errors due to the obsolete codes used to apply the commands and also due to the new code structure for character commands. Therefore I have adjusted the codes given by Ind from his post and done some minor changes to make it compatible with the latest SVN for rAthena. Go to your socket.c and find this line #include <sys/types.h> then add this below: #include <sys/stat.h> // for stat/lstat/fstat - [Dekamaster/Ultimate GM Tool] Still on socket.c, find this line void set_defaultparse(ParseFunc defaultparse) { default_func_parse = defaultparse; } Add this below: then go to socket.h and find this: void send_shortlist_do_sends(); #endif Add the code below: /** * [Dekamaster/Ultimate GM Tool] **/ const char* geoip_getcountry(uint32 ipnum); Then go to your atcommand.c Find this line ACMD_DEF2("newmount", new_mount), And add the code below: ACMD_DEF(accinfo), Still at the atcommand.c, find: ACMD_FUNC(mapmove) then add this code before ACMD_FUNC(mapmove) Don't forget the GeoIP.dat that was provided by Ind to put it inside your db folder. Sorry for the long post. I don't know how to create a diff file I hope this would be helpful
  22. I have seen the @dance command somewhere here at the forums but now it doesn't support the latest SVN revision of rAthena due to the changes of the structure for player commands. Here is the update to support the latest SVN revision for rAthena On your atcommand.c, find the function: ACMD_FUNC(partyrecall) Below its closing brace '}' Add this function /*========================================== * @dance by OnNplay * inspired by Anarchist * Updated by Kaito_Kid to support the latest rev. for rAthena * => Special effects with dance style *------------------------------------------ */ ACMD_FUNC(dance) { nullpo_retr(-1, sd); if (!message || !*message) { clif_displaymessage(fd, "usage: @dance 1-9"); return -1; } if ( atoi(message) == 1 ) { clif_specialeffect(&sd->bl, 413, ALL_CLIENT); } else if ( atoi(message) == 2 ) { clif_specialeffect(&sd->bl, 414, ALL_CLIENT); } else if ( atoi(message) == 3 ) { clif_specialeffect(&sd->bl, 415, ALL_CLIENT); } else if ( atoi(message) == 4 ) { clif_specialeffect(&sd->bl, 426, ALL_CLIENT); } else if ( atoi(message) == 5 ) { clif_specialeffect(&sd->bl, 458, ALL_CLIENT); } else if ( atoi(message) == 6 ) { clif_specialeffect(&sd->bl, 466, ALL_CLIENT); } else if ( atoi(message) == 7 ) { clif_specialeffect(&sd->bl, 501, ALL_CLIENT); } else if ( atoi(message) == 8 ) { clif_specialeffect(&sd->bl, 540, ALL_CLIENT); } else if ( atoi(message) == 9 ) { clif_specialeffect(&sd->bl, 550, ALL_CLIENT); } return 0; } Then find the line ACMD_DEF2("newmount", new_mount), and then place this line of code below ACMD_DEF(dance), Then recompile your source code. NOTE: I didn't create a diff file cause I don't know how to make one ;P, if someone can then it would be helpful
  23. Nice script! Got to try it!
  24. I LOVE YOUR SCRIPT!
  25. It would be hard to do that if you will gonna do it manually. and besides there is no such client that have an Old interface + Skill Window (Renewal).. If you want the old interface then use old clients (2009~2010 Clients not sure about the year range). Besides I think no one would waste their time doing that changes for the client that you are trying to accomplish.
×
×
  • Create New...