Jump to content

DJFUNK

Members
  • Posts

    115
  • Joined

  • Last visited

Everything posted by DJFUNK

  1. use search feature sir.. there are lots of them
  2. I've Diff my client, 2012-04-10aRagexeRE.exe how to set into Offline mode? I've set my clientinfo.xml mmo.h and packet_db.txt but still "Failed Connect to Server" It always Online mode.
  3. how to set: only effect on DemiHuman monster?
  4. There's include in your rA trunk.. see: npc/custom/jobmaster.txt just disable the 3rd job.
  5. I have a custom item... I will put effect: "Increase dammage Arrow Storm skill by 100%" what should I do, on item_db2.txt ?? I mean the item script. thanks for helping
  6. U can manually patch.. there are some direction in these files. such: file, line, etc...
  7. Good one.. any screenshot for this?
  8. your maps always inspiring me :D

  9. surely? read my #2 post. make sure you've read the skill description... because, most of the skill have a different casting one. eg: "Dangerous Soul Collect" casting time. thats a fixed casting time. so, even you change the castrate_dex_scale, that's doesnt take effect. now, what skill that you say the casting time still slowly?
  10. even if you use @reloadbattleconf one, will always give effect to the conf folder on your server, when you start your server sir. btw, what do you want to change?
  11. not according to the plan.. It always error when I set to Offline. Online, is no problem
  12. this work for prevent using kaite skill or not sir?
  13. DJFUNK

    buy GRF

    what the containt these GRF files /spin
  14. you should start: good performance of your Hardware. and the ISP
  15. what do you mean not working exactly? is dex 100, the skill still casting? or why? make sure you've read the skill description...
  16. when loggin in, "Failed Connect to Server" I've setted my clientinfo.xml , mmo.h , adn packet_db just still error
  17. Thank you Emistry I dunno, its from my ISP Problem, or from the rAthena sites. Always got an error when I download any files. just like this:
  18. Use my Newbie Rewarder sir.. you can modify by yourself. It support refined equipment and IP check. // Reward Array <Item Id>, <Qty>, <Refine> // Set refine option to 0 if non-refinable. setarray .@rwd[0],1208,1,0,2424,1,6,2528,1,6; that means: get Main Gauche[4], Tidal Shoes +6, and Wool Scarf +6. if unrefineable items, just set to: 0 empiremain,108,62,3 script Newbie Gift 90,{ // Reward Array <Item Id>, <Qty>, <Refine> // Set refine option to 0 if non-refinable. setarray .@rwd[0],20009,1,0,2424,1,6,2528,1,6; query_sql ("SELECT `last_ip` FROM `login` WHERE `account_id`=" + getcharid(3) + "", .@lip$); if ( getd("$" + .@lip$ + "_NG") > 0 || #NewbieGift > 0) { mes "[Newbie Gift]"; mes "Sorry, You've get one.^^"; close; } mes "[Newbie Gift]"; mes "Welocme to xxx RO."; mes "This is your reward for Newbie:"; // List all the items. for ( set .@i, 0; .@i < getarraysize(.@rwd); set .@i, .@i + 3 ) // Check if refined option is not 0. if(.@rwd[.@i+2] != 0) { mes .@rwd[.@i+1] + " x +" + .@rwd[.@i+2] + " " + getitemname(.@rwd[.@i]); }else{ mes .@rwd[.@i+1] + " x " + getitemname(.@rwd[.@i]); } close2; // Get Items for ( set .@i, 0; .@i < getarraysize(.@rwd); set .@i, .@i + 3 ) // Check if refined option is not 0. if(.@rwd[.@i+2] != 0) { // getitem2 <id>, <qty>, <identify>, <refine>, <attribute>, <card1>, <card2>, <card3>, <card4> getitem2 .@rwd[.@i], .@rwd[.@i+1], 1, .@rwd[.@i+2], 0, 0, 0, 0, 0; }else{ getitem .@rwd[.@i], .@rwd[.@i+1]; } // Set variable to make sure player can't get items again. set #NewbieGift, 1; setd "$" + .@lip$ + "_NG", getd("$" + .@lip$ + "_NG") + 1; end; OnInit: waitingroom "Newbie Gift!",0; end; } Newbie_Rewarder.txt
  19. Sir Euphy, how to split < Euphy's Quest Shop > into more than 1 NPC.
×
×
  • Create New...