Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/11/20 in all areas

  1. It's not already time to implement a foreach? for( .@i = 0; .@i < getarraysize(.@array); .@i++) { dispbotom "Val is " + .@array[.@i]; } We could use: foreach( .@val : .@array ) { dispbottom "Val is " + .@val; } I could try to implement this but the script parser it's a bit confuse to me and I think someone could implement this better than me
    1 point
  2. View File Hairstyle Package Introduction: This package are currently contains around 90~100 hairstyles for both male/female character. I obtained these from various sources like old eAthena, rAthena, Hercules, TheSpriteRepository and other member who shared these sprites with me etc. I don't remember who exactly made each of the sprites, or who even shared these... tell me if you know who are them. If any of these hairstyles are custom work that are meant for private use, kindly contact me, so that I could remove it from the listing. I do have more than this amount, but since my current test client (2018-06-20) can only support up to 100 sprites, so I randomly picked 100 and only upload it here. It included the default 31 hairstyle from kRO, but I think I replaced the 1~20+ hairstyles from JRO which dyed the hair in dark color, the rest are custom hair styles. How to use: You can either merge the provided GRF into your own GRF Load it as another individual GRF using the DATA.ini file Extract it and put it in your Data folder * Depend on your client hexed with whatever settings. Search forum for all these guides. Disclaimer: You're free to share with everyone but do not monetize the contents in any way! These materials are meant for study or research purpose. Use these at your own risk, and always give credit to original author. If there exists issue with sprite file, for example: sprite misalignment, error, etc, kindly ask help from any member who have knowledge with sprite edit. If there exists issue with palette color file, for example: messed up color, error, etc, kindly ask help from any member who have knowledge with palette color edit. Fun Fact: Do you know you can actually combine all male and female hairstyle (including doram) to create a list of universal hairstyles that could be used by any gender of player and doram? Submitter Emistry Submitted 03/15/2020 Category Hairstyles Content Author Various  
    1 point
  3. Hi @PholliCruz Please find attachment below. I hope that script is what you looking for. Cheers PVP_Warper_Ver1.0.txt
    1 point
  4. Hi @ahloi007 As your requested, please find attachment below. Enjoy! PVP_Warper_Ver1.0.txt
    1 point
  5. Hi @wakefield21 Have a try on the NPC as attached. Enjoy and Good Luck! Quest_Warper.txt
    1 point
  6. This can be exploited if you do a suicide mission (paladin casting grand cross for instance) @Mizore Change if ( rand(100) <= .chance ) { to if ( rand(100) <= .chance && killedrid != getcharid(3) ) {
    1 point
  7. - script asdahjhla -1,{ OnPCKillEvent: if ( inarray(.map$, strcharinfo(3)) != -1 ) { if ( rand(100) <= .chance ) { getitem 501, 10; #CASHPOINTS += 1; // I forgot to add this dispbottom "You earned 1 Cash Point. Total : "+ #CASHPOINTS; } } end; OnInit: .chance = 50; // chance to get something setarray .map$, "prontera", "payon"; // map list }
    1 point
  8. here ¹«°Ô50ÀÌ»ó.tga
    1 point
  9. Version 1.0.0

    3263 downloads

    Introduction: This package are currently contains around 90~100 hairstyles for both male/female character. I obtained these from various sources like old eAthena, rAthena, Hercules, TheSpriteRepository and other member who shared these sprites with me etc. I don't remember who exactly made each of the sprites, or who even shared these... tell me if you know who are them. If any of these hairstyles are custom work that are meant for private use, kindly contact me, so that I could remove it from the listing. I do have more than this amount, but since my current test client (2018-06-20) can only support up to 100 sprites, so I randomly picked 100 and only upload it here. It included the default 31 hairstyle from kRO, but I think I replaced the 1~20+ hairstyles from JRO which dyed the hair in dark color, the rest are custom hair styles. How to use: You can either merge the provided GRF into your own GRF Load it as another individual GRF using the DATA.ini file Extract it and put it in your Data folder * Depend on your client hexed with whatever settings. Search forum for all these guides. Disclaimer: You're free to share with everyone but do not monetize the contents in any way! These materials are meant for study or research purpose. Use these at your own risk, and always give credit to original author. If there exists issue with sprite file, for example: sprite misalignment, error, etc, kindly ask help from any member who have knowledge with sprite edit. If there exists issue with palette color file, for example: messed up color, error, etc, kindly ask help from any member who have knowledge with palette color edit. Fun Fact: Do you know you can actually combine all male and female hairstyle (including doram) to create a list of universal hairstyles that could be used by any gender of player and doram?
    Free
    1 point
  10. inside trunk/src/map/itemdb.c change /*========================================== * Specifies if item-type should drop unidentified. *------------------------------------------*/ int itemdb_isidentified(int nameid) { int type=itemdb_type(nameid); switch (type) { case IT_WEAPON: case IT_ARMOR: case IT_PETARMOR: return 0; default: return 1; } } into /*========================================== * Specifies if item-type should drop unidentified. *------------------------------------------*/ int itemdb_isidentified(int nameid) { int type=itemdb_type(nameid); return 1; }
    1 point
×
×
  • Create New...