Jump to content

Haikenz

Members
  • Posts

    309
  • Joined

  • Last visited

  • Days Won

    15

Community Answers

  1. Haikenz's post in Cash Shop icon not showing was marked as the answer   
    Select the option in NEMO Restore Cash Shop Icon
  2. Haikenz's post in Disabling Doram On Character Creation [ 2018-06-20 Client ] was marked as the answer   
    You do not need this ... it can be turned off easily in the lua files in:
    data\luafiles514\lua files\service_korea\ExternalSettings_kr.lub
    MakeableRace = { Doram = true } change to:
    MakeableRace = { Doram = false }  
  3. Haikenz's post in edit/post link CeresCP was marked as the answer   
    @IsabelaFernandez
    try file motd.php
    Ps: Why do not you use FluxCP? has even beautiful themes for him to use.
  4. Haikenz's post in Missing Sprite [Summer, Xmas] was marked as the answer   
    Solved in Source script.cpp
    //Updated client view. Base, Weapon and Cloth Colors. clif_changelook(&sd->bl,LOOK_BASE,sd->vd.class_); clif_changelook(&sd->bl,LOOK_WEAPON,sd->status.weapon); to:
    //Updated client view. Base, Weapon and Cloth Colors. clif_changelook(&sd->bl,LOOK_BASE,sd->vd.class_); //clif_changelook(&sd->bl,LOOK_WEAPON,sd->status.weapon);  
  5. Haikenz's post in R> image & model was marked as the answer   
    I use the updated kRO and it did not ... but I managed to solve it, I downloaded the patch from a server here and extract the grf from them and found
     
    ~Solved!
  6. Haikenz's post in Show sale with balloon(shop) in npc was marked as the answer   
    Errors fixed while compiling:
    Script.cpp
    clif_showvendingboard( &nd->bl, buf, 0 ); Change to:
    clif_showvendingboard( &nd->bl, (const char*)buf, 0 ); Vendings.cpp
    if( nd_sd->subtype == CASHSHOP ) //Act as if it was clicked npc_click( sd, nd_sd ); if( nd_sd->subtype == SHOP ) //Open Buy-Windows directly npc_buysellsel( sd, nd_sd->bl.id, 0 ); if( nd_sd->subtype == SCRIPT ) { //Trigger OnVendingClick event Change to:
    if( nd_sd->subtype == NPCTYPE_CASHSHOP ) //Act as if it was clicked npc_click( sd, nd_sd ); if( nd_sd->subtype == NPCTYPE_SHOP ) //Open Buy-Windows directly npc_buysellsel( sd, nd_sd->bl.id, 0 ); if( nd_sd->subtype == NPCTYPE_SCRIPT ) { //Trigger OnVendingClick event  
  7. Haikenz's post in Remove NPC Woman#prt was marked as the answer   
    npc/re/jobs/3-2/minstrel.txt
    prontera,146,218,4 script Woman#job_min 90,{ Next create the topic in the correct session. Scripts!
  8. Haikenz's post in 2017 client link download was marked as the answer   
    http://herc.ws/board/topic/15348-kro-unpacked-clients-releases/
  9. Haikenz's post in Cash Shop Add New Text was marked as the answer   
    in msgstringtable.txt
  10. Haikenz's post in Character Creation Job Trasnlation was marked as the answer   
    data/msgstringtable.txt
    Human# Swordman, Mage, Merchant, Acolyte, Thief, Archer, Expanded Classes# Doram# Summoner#  
×
×
  • Create New...