Jump to content

hendra814

Members
  • Posts

    1191
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by hendra814

  1. Ragexe unpacked can't download. please fix the link. Thanks
  2. what folder, inside folder data to put the image file?
  3. Emistry, still can't reuse the npc after 23 hours. i'm cek with rizkolivia script the problem at here rizkolivia script
  4. sorry, i just want to ask what folder or file i must put it. Thanks Edit: aldready found it instance_db in re folder
  5. Thanks Emistry, the problem solved.
  6. Hi, please help me from this script https://github.com/rathena/rathena/blob/master/npc/custom/quests/questboard.txt i made duplicate NPC, added this why after i added duplicated NPC, the function counting get wrong. it's always count for the first kill as many i'm duplicate the NPC. so if the quest need to hunt 30 sekeleton, just kill 1 skeleton, it will make the quest complete.
  7. Thank you very much Lelouch vi Britannia
  8. So based on your error, ur no longer use the old emulator which it has 'global_reg_value' yes, i'm used lastest rathena
  9. Need Help, my script for looking cash ladder showing error at Map server. and here my script prontera,147,168,5 script [[G]]Ladder 990,{ switch(select("Zeny:Cash")){ case 1: query_sql("SELECT `c`.`name`, `c`.`class`, `c`.`base_level`, `c`.`job_level`, `c`.`zeny`, `g`.`name` FROM `char` c LEFT JOIN (`guild` g) ON (`c`.`guild_id` = `g`.`guild_id`) ORDER BY `c`.`zeny` DESC LIMIT 10", .@name$, .@class, .@blvl, .@jlvl, .@zeny, .@guild$); for (.@i = 0; .@i < getarraysize(.@name$); .@i++) { .@menu$ = (("" == .@menu$) ? "Top " + (.@i + 1) + " - " + .@name$[.@i] : .@menu$ + ":Top " + (.@i + 1) + " - " + .@name$[.@i]); } mes "[Zeny Ranking]"; mes "Which character do you want to see details about?"; .@selected = select(.@menu$); next; mes "Name: " + .@name$[.@selected - 1]; mes "Class: " + jobname(.@class[.@selected - 1]); mes "Base level: " + .@blvl[.@selected - 1]; mes "Job level: " + .@jlvl[.@selected - 1]; mes "Guild: " + ((.@guild$[.@selected - 1]) ? .@guild$[.@selected - 1] : "none"); mes "Zeny: " + .@zeny[.@selected - 1]; end; case 2: query_sql "SELECT `char`.`name`, CAST(`value` AS UNSIGNED) FROM global_reg_value " + "LEFT JOIN `char` ON global_reg_value.account_id=`char`.account_id " + "WHERE global_reg_value.`str`='#CASHPOINTS' GROUP BY `char`.account_id " + "ORDER BY CAST(`value` AS UNSIGNED) DESC LIMIT 128", .@name$, .@cash; mes "[Top "+getarraysize(.@name$)+" Cash Points]"; for (set .@i,0; .@i<getarraysize(.@name$); set .@i,.@i+1) mes (.@i+1) +". "+ .@name$[.@i] +" cash "+ .@cash[.@i]; close; } } How to Fix this problem. Thanks
  10. already try that, but showing 16 pop up error. and when try in game it's show invalid command.
  11. any guide to use this tools? i just understand to copy rextensions.asi into main ragnarok folder. after that i don't know what to do.
  12. download from here https://github.com/zackdreaver/ROenglishRE using tortoise. put all this file into data folder or make your GRF.
  13. Thanks @Tarts i'm modified into and now it's working
  14. Hi there, i'm making custom script for VIP system using NPC. using atcommand "@vip 1hour "strcharinfo(0)+""; the result always shown VIP failed. and i look at the doc folder and look into Script_command.txt i'm found this but when i'm looking into gm.conf, that's option not found.
  15. and here for all sprite, pallete and texture (item/collection folder) https://github.com/zackdreaver/RO-Clientresources/tree/master/data
  16. are you already put all client translation into your data folder? here some example https://github.com/zackdreaver/ROenglishRE
×
×
  • Create New...