Jump to content

nanakiwurtz

Members
  • Posts

    1654
  • Joined

  • Last visited

  • Days Won

    66

Everything posted by nanakiwurtz

  1. Have you put your lua/lub in 'data\luafiles514\' folder?
  2. Check if you have those maps in your client and server's map index (animeresort & royal_room3)
  3. Thanks for the dewata quest, lua and buttons After Judas PMed me yesterday, currently I'm trying to fix the navi_npc_krsak too according to NPC location in SVN trunk version. And this is the result: Those are the translated NPC name according to the SVN trunk. And as you can see, there're lots of missing names Hope this helps Edit: Put the code inside a spoiler tag because it's too long.
  4. I learned something new everyday ;D

  5. If their account was stolen by another player, and they can use this 'password recovery' feature, then what's the point of having a 'account locker' script?
  6. What error message are you getting? If you can, post some screenshots
  7. There's a search button on top-right of this page, or just search through Ai4rei's profile page.
  8. <version>30</version> <langtype>1</langtype>
  9. In pc.c, find 'pc_setdead(sd);' //... if( pc_issit(sd) ) { clif_status_load(&sd->bl,SI_SIT,0); } pc_setdead(sd); //... Add this below the line and recompile unsigned int base_penalty =0; if(battle_config.zeny_penalty > 0 && !map[sd->bl.m].flag.nozenypenalty) { base_penalty = (unsigned int)((double)sd->status.zeny * (double)battle_config.zeny_penalty / 10000.); if(base_penalty) pc_payzeny(sd, base_penalty); } Note, it's untested ;P Another workaround, still inf pc.c: if (src && src->type == BL_PC) { struct map_session_data *ssd = (struct map_session_data *)src; pc_setparam(ssd, SP_KILLEDRID, sd->bl.id); npc_script_event(ssd, NPCE_KILLPC); //... Edit it into: if (src && src->type == BL_PC ) || (src && src->type == BL_MOB ) { struct map_session_data *ssd = (struct map_session_data *)src; pc_setparam(ssd, SP_KILLEDRID, sd->bl.id); npc_script_event(ssd, NPCE_KILLPC); If you use the second one, everytype of penalty (exp, zeny, karma) will work on 'killed by monster' too.
  10. exp.conf // When a player dies (to another player), how much zeny should we penalize them with? // NOTE: It is a percentage of their zeny, so 100 = 1% zeny_penalty: 0
  11. Yes, I agree with you Aleos, there's nothing wrong with it The forum is rA specific, and if the poster doesn't give any information about what is she/he using, then it'll be confusing...
  12. Yes, redownload the latest version from trunk SVN and recompile.
  13. xD It's hard to guess which one of these post will solve jutaysxd's question.
  14. Try to update your files to the latest SVN version and recompile.
  15. Be sure to close your server.exe first before compiling.
  16. Don't use space in the party name.
  17. It would be a cup of sugar + cappucino on it.
×
×
  • Create New...