Jump to content

miyakee

Members
  • Posts

    25
  • Joined

  • Last visited

Everything posted by miyakee

  1. Wow thanks! Gonna try this! Hope this is the answer! It worked! Thanks Ainna!
  2. Libra crown/Diadem and some headgears still doesnt exist. It think its not complete.. I got an error when im going to equip them. I used http://www.mediafire.com/?9n1yvv9sr8x3tt7 Data folder
  3. Thanks Ainna, ill try it later Thanks Ainna! It worked! Hi Ainna, the Libra crown and some headgears still doesnt exist. It think its not complete..
  4. ohh thanks Alexandia! That was awesome!
  5. Good morning guys! Is there a complete download of sprites of headgears in renewal? not the custom headgears. I have an error on the Virgo Crown/Diadem etc. The Zodiac sign headgears. Please help.. Thanks!
  6. Thanks Guys, ill try it. It worked! Thanks Euphy!
  7. Hi guys, Is there a code to remove all buffs on a character while entering the pvp room? THanks!
  8. I see. Thanks Euphy for the help! Much appreciated!
  9. There is #cashpoint in may database but the ID is 0. I think my server doesnt save cash points.
  10. Good morning Guys, Is there a script that a PVP room only accept 10 people (5v5 party) and there is no MVP cards and other items they can't use in this map? Hope you'll help me guys! Thanks so much!
  11. Hi Good Morning! My players can't use @warp on spl_fild02 and several maps. How to unblock or open it to normal players? Thanks!
  12. Hi Good morning! My players can't warp to some maps but GM accounts can. How to unblock na @warp ont several Maps? Bump pls.. Thanks!
  13. Good morning guys, I have a script that adds a cash point when killing in a pvp room, but it doesnt add. I think the server is not earning cash points. Do i need to create a table to MySQL to activate it? Thanks!
  14. Hi Emistry, why i did not earn cash points? Do i need to do something with my database? Like create a new table?
  15. Nice, it looks like a commercial ragnarok server Where did you edit your flux cp? I can't find mine.
  16. Same problem with Ngek and Hysoka.. Is there an update? Did someone already fixed it? Thanks!
  17. I have this error when im going to recompile the server (Make SQL) I edit the script.c, added this function BUILDIN_FUNC(failedrefitemR) // by jakeRed { int i=-1,num; TBL_PC *sd; num=script_getnum(st,2); sd = script_rid2sd(st); if( sd == NULL ) return 0; if (num > 0 && num <= ARRAYLENGTH(equip)) i=pc_checkequip(sd,equip[num-1]); if(i >= 0) { //Logs items, got from (N)PC scripts [Lupus] if(log_config.enable_logs&0x40) log_pick_pc(sd, "N", sd->status.inventory.nameid, -1, &sd->status.inventory); sd->status.inventory.refine = sd->status.inventory.refine - 3; pc_unequipitem(sd,i,2); // status calc will happen in pc_equipitem() below clif_refine(sd->fd,0,i,sd->status.inventory.refine); clif_delitem(sd,i,1,2); if(log_config.enable_logs&0x40) log_pick_pc(sd, "N", sd->status.inventory.nameid, 1, &sd->status.inventory); clif_additem(sd,i,1,0); clif_misceffect(&sd->bl,2); } return 0; } Btw, im using Rathena server. Hope you could help me.. > r/include -c -o obj_sql/script.o script.c > script.c: In function âbuildin_failedrefitemRâ > :script.c:7045: error: incompatible type for argument 2 of âlog_pick_pc > âscript.c:7045: warning: passing argument 4 of âlog_pick_pcâ makes pointer from integer without a cast > script.c:7045: error: too many arguments to function âlog_pick_pc > âscript.c:7054: error: incompatible type for argument 2 of âlog_pick_pc > âscript.c:7054: warning: passing argument 4 of âlog_pick_pcâ makes pointer from integer without a cast > script.c:7054: error: too many arguments to function âlog_pick_pc
  18. The BitMask Table : //--- Bitmasks ---- // 1 - Top Headgear // 2 - Armor // 4 - Left Hand // 8 - Right Hand // 16 - Garment // 32 - Shoes // 64 - Left Accessory // 128 - Right Accessory // 256 - Middle Headgear // 512 - Lower Headgear If you want to allow the refine on those part....then just put in the Number ( for Single Part Refiner ) or Add in all the Number ( for Multiple Part Refiner ) For Example : A Refiner that can refine Top Headgear Only ( BitMask = 1 ) A Refiner that can refine Both Left / Right Accessory Only ( BitMask = 126 + 64 = 190 ) A Refiner that can refine Armor / Garment / Shoes Only ( BitMask = 2 + 16 + 32 = 50 ) and etc..... Function Script Calling : callfunc( "RefineFunc",<itemID>,<BitMasks>,<MaxRefine>,<CheckEquip>,<RefineMode> ); Explaination on Each Argument : // itemID -> Item that will be used. // BitMask -> Refer to above bitmask table. // MaxRefine -> What is the Max Refine. [ Can Bypass Default Server Max Refine ] // CheckEquip -> Check Equipments is Refineable or not. [ 0 = Disable / 1 = Enable ] // RefineMode -> +1 / Max Refine. [ 0 = +1 Refine / 1 = Max Refine ] Sample Script : Use as Item ( Refine Ticket ) : 501,Red_Potion,Red Potion,11,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc( "RefineFunc",501,63,10,1,1 ); },{},{} Caution : Change Item Type to 11 Use as NPC Script ( Custom 100% Refiner ) : prontera,155,181,5 script Refiner 757,{ callfunc( "RefineFunc",501,63,10,1,1 ); } You can create as many NPC / Items for refine as you want to... just make sure youprovide the correct Settings. With this script, you can create several NPC that can allow users to refine items 100% success using certain items and different max refine level. So, that your server wont need to focus on using 1 NPC. You can make 1 NPC for refine +5 / +6 / +7 using Elunium without fail, then you can further the refine to +8 / +9 using another NPC with different Items, and lastly +10 another NPC. It is all up to you. Refine Function [ Version 4 ] Changelog : Scripts : View ♥ Download Please spend your time to read all the things i have write / mentioned in the post before you asking any questions. if got bug / problems please do report to me. Good Morning Emistry, Im looking for an NPC refiner that if it refine fails, it will still get the item and does not destroyed
×
×
  • Create New...