Jump to content
  • 0

help Special Drop Rate item


croxinuz

Question


  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  62
  • Reputation:   0
  • Joined:  03/18/12
  • Last Seen:  

i have ind_item_drop.txt and IndSpecialItemDrop.patch may someone help me .. how to implen in my Ragnarok Private server .. >.<

Edited by croxinuz
Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  592
  • Reputation:   31
  • Joined:  11/14/11
  • Last Seen:  

- 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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  62
  • Reputation:   0
  • Joined:  03/18/12
  • Last Seen:  

sorry sir... i mean.. how to install this file to my private server >.<

http://rathena.org/board/index.php?app=core&module=attach&section=attach&attach_id=1227

hehe... sorry my english is not good ..

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  117
  • Reputation:   8
  • Joined:  05/07/12
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  62
  • Reputation:   0
  • Joined:  03/18/12
  • Last Seen:  

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 ? >.<

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  707
  • Reputation:   168
  • Joined:  01/26/12
  • Last Seen:  

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

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...