croxinuz Posted May 17, 2012 Share 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 Link to comment Share on other sites More sharing options...
GM Takumirai Posted May 17, 2012 Share 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 Link to comment Share on other sites More sharing options...
croxinuz Posted May 17, 2012 Author Share 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 Link to comment Share on other sites More sharing options...
Docubo Posted May 17, 2012 Share 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 Link to comment Share on other sites More sharing options...
croxinuz Posted May 17, 2012 Author Share 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 Link to comment Share on other sites More sharing options...
Asura Posted May 17, 2012 Share 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 Link to comment Share on other sites More sharing options...
i have ind_item_drop.txt and IndSpecialItemDrop.patch may someone help me .. how to implen in my Ragnarok Private server .. >.<
Edited by croxinuzLink to comment
Share on other sites