Jump to content

fzxree1010

Members
  • Posts

    23
  • Joined

  • Last visited

Everything posted by fzxree1010

  1. im having same issue, what should i fix in skill_db.yml?
  2. Heheyyyy Awesome!! Fellow malaysiannn.. #kitajagakita
  3. Hi @AnnieRuru thank you for your feedback and suggestion. Really really appreciate your assistance on the amendment too.I Really learn a lot on the progress of this script. Thank you. Will give it a run tomorrow. Cheers from malaysia.
  4. Hi @goddameit been reading the script, can you clarify the function of set .e_t,5; what is the purpose of it? Start: set .event,2; set .e_x,rand(1,35); set .e_y,rand(1,35); set .e_t,5; callsub WarpShow,.e_x,.e_y; while(sleep(1000)) if(set(.e_t,.e_t-1)<0) break; else callsub ShowEffect; callsub WarpNoSafe,.e_x,.e_y; sleep 1000; return;
  5. Hi @AnnieRuru The script that you provided works like a charm! Thank you for your work. On the side note, i tried adding and changing few things from the initial idea, and i encounter few issue in the making. Below are the details and the script Addons and Challenges Added Rounds to make the event a little longer. Change from 1_SHADOW_NPC to 139(A not clickable npc, with position/info send to client) , i tried to replace the NPC sprite to specialeffect instead because i find it hard to walk to the NPC while clicking on the npc position due to the clickable NPC. But by doing this, i seem cant find the reason why not all NPC showing the effect. It sometime randomly shows 2 or 4 special effect while i have 6 duplicate NPC. Tried to make everyone start the event from the middle of the map every round. Added mapwarp right before the round starts, but by doing this, the npc did not kill the person who fail to find the portal to hide. tried to make PCBLOCK_MOVE after the warp in the middle and few seconds after the portal appears players can move freely to catch the portal. This i also fail miserably. Here are the latest changes i made, hope you can give few advise on this since im still learning on the scripting area. //===== rAthena Script ======================================= //= Run and Hide //===== By: ================================================== //= AnnieRuru //===== Current Version: ===================================== //= 0.3 //===== Compatible With: ===================================== //= rAthena 2020-10-12 //===== Description: ========================================= //= Player has to run and stand next to a NPC to hide to survive //===== Topic ================================================ //= https://rathena.org/board/topic/126202-run-and-hide-script/ //===== Additional Comments: ================================= //= //============================================================ prontera,154,178,5 script Run And Hide 1_F_MARIA,{ if (!.start) { mes "no event atm"; close; } if (.start == 2) { mes "event is running"; close; } if (.register_count >= .register_limit) { mes "this event has reach the maximum player participations"; close; } if (!checkweight(.reward_itemid, .reward_itemamount)) { mes "You are currently overweight, store some items to continue"; close; } percentheal 100,100; warp "guild_vs5", 0,0; .register_aid[.register_count++] = getcharid(3); @runandhide_flag = false; end; OnGMCommand: if (getgmlevel() < 60) end; //OnClock0000: // put all your start timer here OnMinute00: if (.start == 2) callsub L_resetmap; else if (.start == 1) end; disablenpc "Exit#runandhide"; announce "Run And Hide event registration start", bc_all; .start = 1; sleep 10000; // registration timer here announce "Run And Hide event registration close", bc_all; .start = 2; if (.register_count < .register_min) { announce "Not enough participants for Run And Hide event", bc_all; mapwarp "guild_vs5", .map$, .x, .y; callsub L_resetmap; end; } sleep 3000; for(.round = 1;.round <= .setround;.round++){ //mapwarp "guild_vs5","guild_vs5",49,46; // Warp To Middle Not Working mapannounce "guild_vs5", "Round "+.round+".!!! Find the portal to Hide !!!!!", bc_all; for (.@i = 1; .@i <= 6; ++.@i) { setnpcdisplay "runandhide#"+ .@i, 139; set getvariableofnpc(.runandhide_flag[.@i], "runandhide#main"), false; getfreecell "guild_vs5", .@x, .@y; movenpc "runandhide#"+ .@i, .@x, .@y; } callsub PlayEffect; if(.round == 1) sleep 15000; if(.round == 2) sleep 13000; if(.round == 3) sleep 12000; if(.round > 3) sleep 10000; // time for players to hide for (.@i = 0; .@i < .register_count; ++.@i) { if (isloggedin(.register_aid[.@i])) { attachrid .register_aid[.@i]; if (@runandhide_flag == false) { unitkill .register_aid[.@i]; specialeffect2 EF_THUNDERSTORM; deletearray .register_aid[.@i], 1; --.@i; --.register_count; } else { setpcblock PCBLOCK_MOVE|PCBLOCK_SKILL, false; setoption 0x2, false; @runandhide_flag = false; } } else { deletearray .register_aid[.@i], 1; --.@i; --.register_count; } } } detachrid; enablenpc "Exit#runandhide"; for (.@i = 1; .@i <= 6; ++.@i) { setnpcdisplay "runandhide#"+ .@i, HIDDEN_WARP_NPC; set getvariableofnpc(.runandhide_flag[.@i], "runandhide#main"), false; movenpc "runandhide#"+ .@i, 0,0; } announce .register_count +" players survive the onslaught, visit the exit npc in the center to claim the reward.", bc_all; end; PlayEffect: for(set .@ef,1; .@ef<=6; set .@ef,.@ef+1) initnpctimer "runandhide#"+.@ef; return; OnPCLogoutEvent: if (.start != 2 || strcharinfo(3) != "guild_vs5") end; while (.register_aid[.@i] != getcharid(3) && .@i < .register_count) ++.@i; if (.@i == .register_count) end; deletearray .register_aid[.@i], 1; --.register_count; warp "SavePoint", 0,0; end; L_resetmap: mapwarp "guild_vs5", .map$, .x, .y; .start = 0; deletearray .register_aid; .register_count = 0; disablenpc "Exit#runandhide"; return; OnInit: getmapxy .map$, .x, .y, BL_NPC; .register_min = 1; // minimum amount of players to start this event, or else it auto-abort .register_limit = 100; // maximum amount of players able to participate in this event .reward_itemid = 501; .reward_itemamount = 1; .setround = 5; bindatcmd "runandhide", strnpcinfo(0)+"::OnGMCommand", 60,100; disablenpc "Exit#runandhide"; end; } guild_vs5 mapflag nosave SavePoint guild_vs5 mapflag nowarp guild_vs5 mapflag nowarpto guild_vs5 mapflag noteleport guild_vs5 mapflag nomemo guild_vs5 mapflag nopenalty guild_vs5 mapflag nobranch guild_vs5 mapflag noicewall guild_vs5,49,56,5 script Exit#runandhide 112,{ mes "[Exit]"; mes "See ya."; close2; warp "Save",0,0; getitem 501, 1; end; } - script runandhide#main FAKE_NPC,{ end; OnTimer1: specialeffect 317; end; OnTouch: if (getvariableofnpc(.start, "Run And Hide") != 2) end; .@npcid = atoi(strnpcinfo(2)); if (.runandhide_flag[.@npcid]) end; setoption 0x2, true; setpcblock PCBLOCK_MOVE|PCBLOCK_SKILL, true; setnpcdisplay strnpcinfo(0), HIDDEN_WARP_NPC; specialeffect 218; @runandhide_flag = true; .runandhide_flag[.@npcid] = true; end; } guild_vs5,0,0,0 duplicate(runandhide#main) runandhide#1 139,1,1 guild_vs5,0,0,0 duplicate(runandhide#main) runandhide#2 139,1,1 guild_vs5,0,0,0 duplicate(runandhide#main) runandhide#3 139,1,1 guild_vs5,0,0,0 duplicate(runandhide#main) runandhide#4 139,1,1 guild_vs5,0,0,0 duplicate(runandhide#main) runandhide#5 139,1,1 guild_vs5,0,0,0 duplicate(runandhide#main) runandhide#6 139,1,1
  6. Thank you @Poring King Yup i have found this script, this gives me idea on the movenpc, but i was stuck on instead of warp the player outside the area i want it kill the player outside the area. OMG! Thank you so much! Will study the method and give it a test on this one. Thank you @AnnieRuru
  7. Hi All, I would like to request a basic script of my idea below. Imagine we are using a small map for this event. When the npc timer start, a bunch of NPC that will disguise into Hole effect or Crystal or Mob will spawn in a random location in the map. Player has to run and stand next to a NPC to hide. The NPC and the player will be hidden when they are next to it. When the timer runs out players who are not able to find a NPC will get killed by a lightning. Then the script restart I have a very basic knowledge of scripting but would appreciate if anyone can guide me to kick start with the script. Thank you in advance.
  8. Hey man, nice script loving it. A question from me. Will it possible to make player walk close to it instead of clicking it and the rewards triggers once the player is next to the ninja? UPDATE: Nevermind, i got it working in my server! Thanks for the script!!
  9. Thanks @AnnieRuru. So this is not possible in rAthena?
  10. Hi guys! been looking everywhere and wondering how can i make a shop like this? Using itemshop did not show the price like that but instead the shop are using points.
  11. Yea i have already reloaded my database i already recompile and restart the server. Yes it has more than 70 exp value. Thats whats bugging me. Is there any other setting that i miss out.
  12. Hi Guys! Is it possible to change the job level for renewal class to 70? Currently my server Base level is at 200 and wanted to make job level to 70 but seems like its not working for me. The job lvl ends at 60 and the job exp bar shows blank. Here is my Job_exp.txt // Experience Tables [Renewal] // Only official levels included, check db/import-tmpl/job_exp.txt for an expanded list // // Structure of Database: // Max Level,Class list,Type,Exp for Lv 1,2,3,...,200 // // Type: // 0 = Base Exp, 1 = Job Exp //Base - Normal and Baby Jobs 99,0:1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:16:17:18:19:20:21:23:24:25:4023:4024:4025:4026:4027:4028:4029:4030:4031:4032:4033:4034:4035:4036:4037:4038:4039:4040:4041:4042:4043:4044:4045:4046:4047:4048:4049:4050:4051:4052:4222:4225:4226:4227:4228:4238,0,550,900,1500,2200,3200,3800,4200,4550,5000,5500,6000,6100,6350,6700,7350,8000,8400,8800,9200,9700,10300,11000,11800,13000,14000,15000,16000,17000,18000,19000,20000,21000,22000,23200,24000,26000,27500,29000,30000,31500,33000,34000,36000,37500,38000,40000,42000,44500,47000,49000,51000,53000,55000,59000,61500,61500,63000,65000,67000,69000,70000,73000,77000,80000,84000,88000,91000,95000,110000,128000,140000,155000,163000,170000,180000,188000,195000,200000,230000,260000,300000,350000,400000,480000,550000,600000,680000,750000,900000,1000000,1200000,1500000,1800000,2100000,2400000,2800000,3300000,4000000,99999999 //Base - Trans classes 99,4001:4002:4003:4004:4005:4006:4007:4008:4009:4010:4011:4012:4013:4014:4015:4016:4017:4018:4019:4020:4021:4022,0,600,1080,1800,2640,3840,4560,5040,5460,6000,6600,7200,7320,7620,8040,8820,9600,10080,10560,11040,12610,13390,14300,15340,16900,18460,19500,20800,22100,23400,24700,26000,27300,28600,30160,31200,33800,35750,37700,39000,44100,46200,47600,50400,52500,53200,56000,58800,62300,65800,68600,71400,74200,77000,79800,82600,86100,88200,91000,93800,103500,105000,109500,115500,120000,126000,132000,136500,142500,165000,192000,210000,232500,244500,255000,270000,282000,292500,300000,345000,416000,480000,560000,640000,768000,880000,960000,1088000,1200000,1440000,1700000,2040000,2550000,3060000,3570000,4080000,4760000,5610000,6800000,99999999 //Base - Extended classes - Values for level 1 - 99 are unused and are simply copy-pasted from Normal classes values. 200,4190:4191:4211:4212:4215:4239:4240:4223:4224:4229:4239:4240:4241:4242:4243:4244,0,550,900,1500,2200,3200,3800,4200,4550,5000,5500,6000,6100,6350,6700,7350,8000,8400,8800,9200,9700,10300,11000,11800,13000,14000,15000,16000,17000,18000,19000,20000,21000,22000,23200,24000,26000,27500,29000,30000,31500,33000,34000,36000,37500,38000,40000,42000,44500,47000,49000,51000,53000,55000,59000,61500,61500,63000,65000,67000,69000,70000,73000,77000,80000,84000,88000,91000,95000,110000,128000,140000,155000,163000,170000,180000,188000,195000,200000,230000,260000,300000,350000,400000,480000,550000,600000,680000,750000,900000,1000000,1200000,1500000,1800000,2100000,2400000,2800000,3300000,4000000,1272747,1354202,1440870,1533085,1631202,1735598,1846676,1964863,2090614,2224413,2366775,2518248,2679415,2850897,3033354,3227488,3434047,3653826,3887670,4136480,4401214,4755467,5138234,5551810,5998675,6481508,7003204,7566891,8175950,8834032,9545083,10313366,11143488,12040427,13009560,14056699,15188122,16410613,17731503,19158711,20700795,22367001,24167320,26112547,28214345,30485317,32939080,35590346,38455012,41550255,44894635,48508204,52412629,56631321,61189576,66114724,71436298,77186205,83398922,90111701,97364791,105201683,113669366,122818613,132704283,143385650,154926760,167396814,180870583,195428856,211158924,229155105,246519309,266361648,287801097,310966207,352013746,398479560,451078861,510621270,578023277,654322349,740692899,838464361,949141656,1074428354,1216252896,1376798278,1558535650,1764262355,1997144985,2260768123,2559189515,2897002530,3279406863,3712288568,4202310658,4757015664,5384941731,6095754039,6900363572,99999999 //Base - Third classes - Values for level 1 - 99 are unused and are simply copy-pasted from Trans classes values. 200,4054:4055:4056:4057:4058:4059:4066:4067:4068:4069:4070:4071:4072:4060:4061:4062:4063:4064:4065:4073:4074:4075:4076:4077:4078:4079:4080:4081:4082:4083:4084:4085:4086:4087:4096:4097:4098:4099:4100:4101:4102:4103:4104:4105:4106:4107:4108:4109:4110:4111:4112,0,600,1080,1800,2640,3840,4560,5040,5460,6000,6600,7200,7320,7620,8040,8820,9600,10080,10560,11040,12610,13390,14300,15340,16900,18460,19500,20800,22100,23400,24700,26000,27300,28600,30160,31200,33800,35750,37700,39000,44100,46200,47600,50400,52500,53200,56000,58800,62300,65800,68600,71400,74200,77000,79800,82600,86100,88200,91000,93800,103500,105000,109500,115500,120000,126000,132000,136500,142500,165000,192000,210000,232500,244500,255000,270000,282000,292500,300000,345000,416000,480000,560000,640000,768000,880000,960000,1088000,1200000,1440000,1700000,2040000,2550000,3060000,3570000,4080000,4760000,5610000,6800000,1272747,1354202,1440870,1533085,1631202,1735598,1846676,1964863,2090614,2224413,2366775,2518248,2679415,2850897,3033354,3227488,3434047,3653826,3887670,4136480,4401214,4755467,5138234,5551810,5998675,6481508,7003204,7566891,8175950,8834032,9545083,10313366,11143488,12040427,13009560,14056699,15188122,16410613,17731503,19158711,20700795,22367001,24167320,26112547,28214345,30485317,32939080,35590346,38455012,41550255,44894635,48508204,52412629,56631321,61189576,66114724,71436298,77186205,83398922,90111701,97364791,105201683,113669366,122818613,132704283,143385650,154926760,167396814,180870583,195428856,211158924,229155105,246519309,266361648,287801097,310966207,352013746,398479560,451078861,510621270,578023277,654322349,740692899,838464361,949141656,1074428354,1216252896,1376798278,1558535650,1764262355,1997144985,2260768123,2559189515,2897002530,3279406863,3712288568,4202310658,4757015664,5384941731,6095754039,6900363572,99999999 //Base- Summoner 200,4218:4220,0,55,90,150,220,320,380,420,455,500,550,600,700,800,900,1000,1100,1200,1400,1500,1800,2100,2400,2700,3000,3300,3600,3900,4200,4500,5400,6300,7200,8100,9000,9900,10800,11700,12600,13500,16200,18900,21600,24300,27000,29700,32400,35100,37800,40500,43200,45900,48600,51300,54000,56700,59400,62100,64800,67500,70200,72900,75600,78300,81000,83700,86400,89100,91800,94500,103950,114345,125779,138356,152201,167421,184163,202579,222836,240662,259914,280707,303163,327416,353609,381897,412448,445443,481078,519564,561129,606019,654500,706860,763408,824480,890438,961673,1038606,1121694,1211429,1308343,1413010,1526050,1648134,1779984,1922382,2076172,2242265,2421646,2615377,2824607,3050575,3294621,3558190,3842845,4150272,4482293,4840876,5228146,5646397,6098108,6585956,7112832,7681858,8296406,8960118,9676927,10451081,11287167,12190140,13165351,14218579,15356065,16584550,17911314,19344219,20891756,22563096,24368143,26317594,28423001,30696841,33152588,35804795,38669178,41762712,45103728,48712026,52608988,56817707,61363123,66272172,71573945,77299860,83483848,90162555,97375559,105165603,113578851,122665159,132478371,143076640,154522771,166884592,177548517,188893867,200964185,222383346,234614430,247518223,261131725,275493969,290646137,306631674,347137718,392994610,444909197,503681701,570218053,645543857,730820200,827361548,936656008,1060388266,1200465555,1359047054,1538577169,1741823213,1971918059,2232408434,2527309588,2861167184,3239127369,3667016094,4151428920,4699832680,5320680577,6023542481,6819252442,99999999 //Job - Novice & Baby Novice 10,0:4023,1,55,90,150,150,320,380,420,455,500,999999999 //Job - 1st Classes & Baby 1st Classes, Taekwon 50,1:2:3:4:5:6:4024:4025:4026:4027:4028:4029:4046:4050:4225,1,60,130,260,460,780,1060,1300,1560,1910,2290,2680,2990,3340,3740,4360,4970,5530,6120,6700,8090,8920,9970,11080,12690,14440,15850,17400,19220,21060,22870,24910,26840,29080,31320,33300,37110,40500,43570,46180,53510,57200,60310,65690,70090,72130,77540,83320,90120,97180,999999999 //Job - 2nd Classes & Baby 2nd Classes, Soul Linker 50,7:8:9:10:11:12:13:14:15:16:17:18:19:20:21:4030:4031:4032:4033:4034:4035:4036:4037:4038:4039:4040:4041:4042:4043:4044:4049:4051:4052:4227,1,2500,4200,7000,10300,15900,18900,20900,22600,24900,28800,31500,32000,33300,35100,40500,44100,46300,48500,50700,56000,59400,63500,68100,75000,85700,90500,96600,102600,108600,119700,126000,132300,138600,146100,157500,170600,180400,190300,196800,214900,225200,232000,245700,255900,279300,294000,308700,327000,345400,999999999 //Job - Ninja, Gunslinger 70,24:25:4222:4228,1,200,300,400,600,700,1000,1200,1400,1700,1900,2400,2700,3200,3600,4200,4900,5500,6100,6900,7700,8400,9300,10100,11100,12100,13000,14600,16100,17500,18600,21500,23300,24700,27000,29000,30000,32400,35000,38100,41100,44000,46700,49600,52500,55600,58900,62700,65500,69200,72300,81200,84100,89300,95500,100900,107800,114900,120700,128600,150500,176900,196100,219600,234200,247900,266400,281300,296600,308000,999999999 //Job - Star Gladiator 50,4047:4048:4226:4238,1,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,50700,101400,112000,118800,127000,136200,150000,171400,181000,193200,205200,217200,239400,252000,264600,277200,292200,315000,341200,360800,380600,393600,429800,450400,464000,491400,511800,558600,588000,617400,654000,690800,999999999 //Job - High Novice 10,4001,1,12,22,35,50,113,188,256,335,425,999999999 //Job - Trans 1st Classes 50,4002:4003:4004:4005:4006:4007,1,340,550,760,990,1250,1600,1980,2340,2740,3140,3950,4510,5210,5950,7000,8150,9130,10220,11480,12780,14090,15560,16980,18620,20280,21780,24510,27000,29000,31000,36000,39000,41000,45000,49000,51900,55000,59450,64630,70030,74940,79800,84630,89610,95170,100420,107250,112070,118120,999999999 //Job - Trans 2nd Classes 70,4008:4009:4010:4011:4012:4013:4014:4015:4016:4017:4018:4019:4020:4021:4022,1,1803,2972,5036,7434,11312,13520,15117,16540,18350,21441,23596,24256,25461,27174,32029,35216,37349,39521,41734,51958,55721,60081,65113,72448,87216,93081,100283,107620,115094,135249,143768,152508,161343,171856,199607,218415,233368,248529,259675,331968,351261,365552,390909,411275,473857,503777,534248,571719,609886,674886,711926,749561,787957,826965,928824,984554,1022494,1070636,1119554,1269585,1307290,1396228,1512414,1604928,1830969,2034180,2211611,2538936,3105953,999999 //Job - 3rd Jobs & Baby 3rds, Oboro, Kagerou, Rebellion, Star Emperor, Soul Reaper 70,4054:4055:4056:4057:4058:4059:4060:4061:4062:4063:4064:4065:4066:4067:4068:4069:4070:4071:4072:4073:4074:4075:4076:4077:4078:4079:4080:4081:4082:4083:4084:4085:4086:4087:4096:4097:4098:4099:4100:4101:4102:4103:4104:4105:4106:4107:4108:4109:4110:4111:4112:4211:4212:4215:4223:4224:4229:4239:4240:4241:4242:4243:4244,1,12800,16384,20971,26843,34359,43980,56294,72057,92233,118059,151115,193428,247588,316912,405648,519229,664613,850705,1088903,1393796,1784059,2283596,2923003,3741444,4231573,4785909,5412863,6121948,6923924,7830958,8856813,10017056,11329290,12813427,14491986,16390436,18537584,20966007,23712554,26818899,30332175,34305690,38799735,43882500,49631108,56132783,63486178,71802867,81209043,91847428,103879441,117487647,132878529,150285617,169973033,192239500,217422874,245905271,278118862,319836691,367812195,422984024,486431628,559396372,632361116,705325860,778290604,851255348,924220092,999999999 //Job - Expanded Super Novice & Expanded Super Baby 50,4190:4191,1,112000,355000,615000,917000,1253000,1595000,2007000,2430000,2868000,3420000,3863000,4504000,4998000,5769000,6321000,7254000,7870000,9015000,9530000,11072000,11848000,13467000,14337000,16243000,17216000,19446000,20781000,23070000,24453000,27568000,29118000,31820000,34125000,37048000,40204000,42972000,45937000,49110000,52696000,57158000,61305000,67167000,72285000,77647000,83624000,91113000,98548000,107630000,119077000,999999999 //Job - Super Novice & Baby Super Novice 99,23:4045,1,60,130,260,460,780,1060,1300,1560,1910,2290,2680,2990,3340,3740,4360,4970,5530,6120,6700,8090,8920,9970,11080,12690,14440,15850,17400,19220,21060,22870,24910,26840,29080,31320,33300,37110,40500,43570,46180,53510,57200,60310,65690,70090,72130,77540,83320,90120,590120,600120,610120,620120,630120,640120,650120,660120,670120,680120,690120,700120,710120,720120,730120,740120,750120,760120,770120,780120,790120,800120,810120,820120,830120,840120,850120,860120,870120,880120,890120,900120,910120,920120,930120,940120,950120,960120,970120,980120,990120,1000120,1010120,1020120,1030120,1040120,1050120,1060120,1070120,1080120,999999999 //Job - Summoner 60,4218:4220,1,60,130,260,460,780,1060,1300,1560,1910,2500,4200,7000,10300,15900,18900,20900,22600,24900,28800,33100,35100,40500,44100,46300,48500,50700,56000,59000,63500,68100,75000,85700,90500,106000,112000,355000,615000,917000,1253000,1595000,2007000,2430000,2868000,3420000,3863000,4504000,4998000,5769000,6321000,7585200,9860760,13805064,20707596,33132154,53011447,72890740,92770033,112649326,132528619,999999999
  13. Hai, can anyone help on how to properly setup mob for the map?
  14. Nevermind, i got it sorted. my own mistake. it should be no problem to add @ inside npc dialogue
  15. Hi All, Need help on this one. can anyone show me how to add @ in NPC dialogue. example : mes "Type @joinevent to join the event"; currently it returns error. Ive been searching everywhere and cant find the solution for this.
  16. hai, can i have the quest-db for this, i cant find it anywhere. mine is outdated
  17. Hi, is this file include together with all the quest_db for gramps?
  18. How do you fix this issue?
  19. Hi, Have you found solution for this? i have same issue like this too
  20. Thank you for your reply. oh i see. So what is the version at the moment? I see there is few server with episode 17.1. How do they do that? did they create all the quest by themself?
  21. Hai All, wanted to know if the latest rathena server is updated till episode 17.2. Im fairly new on this part, i tried to search on all the boards and could find the information i needed.
×
×
  • Create New...