croxinuz Posted May 17, 2012 Posted May 17, 2012 (edited) i have ind_item_drop.txt and IndSpecialItemDrop.patch may someone help me .. how to implen in my Ragnarok Private server .. >.< Edited May 17, 2012 by croxinuz Quote
GM Takumirai Posted May 17, 2012 Posted May 17, 2012 - script Sample -1,{ function CustomRateCard; OnNPCKillEvent: // CustomRateCard( <MobID>,<CardID>,<Rate> ); // Rate : 1 = 0.01% / 1000 = 10% / 10000 = 100% CustomRateCard( MobID,ItemID,Rate ); CustomRateCard( MobID,ItemID,Rate ); CustomRateCard( MobID,ItemID,Rate ); CustomRateCard( MobID,ItemID,Rate ); CustomRateCard( MobID,ItemID,Rate ); CustomRateCard( MobID,ItemID,Rate ); CustomRateCard( MobID,ItemID,Rate ); CustomRateCard( MobID,ItemID,Rate ); end; function CustomRateCard { if( killedrid == getarg(0) && rand( 10000 ) <= getarg(2) ){ getitem getarg(1),1; } return; } } you can change this.. CustomRateCard( MobID,ItemID,Rate ); save the script rename it customdrop.txt and save in ra/npc/custom in scripts_custom.conf npc: npc/custom/customdrop.txt - credits to Emistry Quote
croxinuz Posted May 17, 2012 Author Posted May 17, 2012 sorry sir... i mean.. how to install this file to my private server >.< http://rathena.org/board/index.php?app=core&module=attach§ion=attach&attach_id=1227 hehe... sorry my english is not good .. Quote
Docubo Posted May 17, 2012 Posted May 17, 2012 for windows.. use TortoiseSVN, go to your rAthena directory, right click inside the folder and select TortoiseSVN -> Apply patch. then select the .patch file. recompile when u are done. never did that on linux, but this should help: http://rathena.org/w...tch_your_server Quote
croxinuz Posted May 17, 2012 Author Posted May 17, 2012 for windows.. use TortoiseSVN, go to your rAthena directory, right click inside the folder and select TortoiseSVN -> Apply patch. then select the .patch file. recompile when u are done. never did that on linux, but this should help: http://rathena.org/w...tch_your_server i'm using linux on VPS.. hmm.. i'll try that ... Thank you for help me hmm.,. i'm using putty to patch that file.. but on putty,. i just read " -bash: patch: command not found" some one can help me ? >.< Quote
Asura Posted May 17, 2012 Posted May 17, 2012 Hi croxinuz, Upload that .patch file in 'trunk/src/map'; and then enter that directory with 'cd' and perform the following command. patch -p0 < IndSpecialItemDrop.patch Quote
Question
croxinuz
i have ind_item_drop.txt and IndSpecialItemDrop.patch may someone help me .. how to implen in my Ragnarok Private server .. >.<
Edited by croxinuz5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.