Jump to content
  • 0

Help ! droprate


Kariton Revolution

Question


  • Group:  Members
  • Topic Count:  161
  • Topics Per Day:  0.04
  • Content Count:  429
  • Reputation:   5
  • Joined:  11/21/11
  • Last Seen:  

my mvp card Drop  rate is 70%

 

how to i make some MVP monster like this

1% lighthalzen boss Card

3% FallenBisHop card

5% GoldenThiefBug card

3% Randgris card

2% Thanatos card

3% Ifrit card

3% Beelzebub card

help :(

Edited by Kariton Revolution
Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  125
  • Topics Per Day:  0.03
  • Content Count:  595
  • Reputation:   23
  • Joined:  02/23/12
  • Last Seen:  

i have here..

 

-	script	Sample	-1,{
function CustomRateCard;

OnNPCKillEvent:
// CustomRateCard( <MobID>,<CardID>,<Rate> );
// Rate : 1 = 0.01%  /  1000 = 10%  /  10000 = 100%

CustomRateCard( 1734,4403,1 );	// Kiel Card
CustomRateCard( 1751,4407,200 );	// Valkyrie Randgris Card
CustomRateCard( 1646,4357,200 );	// Lord Knight Card

// so on...

credits to Emistry.

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

its that working on 3ceam? :(

try it

 

btw with this script you can gain 2 cards at once (normal drop+by script)

I suggest to implement theses commands on your server (rathena only, search the trac)

*addmonsterdrop <monster id>,<item id>,<rate>;
*addmonsterdrop "<monster name>",<item id>,<rate>;
*delmonsterdrop <monster id>,<item id>;
*delmonsterdrop "<monster name>",<item id>;

These commands will temporarily add or delete a monster drop, which will be reset
when the mob database reloads or the server shuts down. They return 1 upon success.

If the monster already drops the specified item, its drop rate will be updated with
the given rate (100 = 1%).

Examples:
    // Makes Owl Baron drop Honey at an 80% rate.
    addmonsterdrop 1295,518,8000;

    // Deletes Executioner's Mitten from Rybio.
    delmonsterdrop 1201,7017;
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  125
  • Topics Per Day:  0.03
  • Content Count:  595
  • Reputation:   23
  • Joined:  02/23/12
  • Last Seen:  

its that working on 3ceam? :(

try it

 

btw with this script you can gain 2 cards at once (normal drop+by script)

I suggest to implement theses commands on your server (rathena only, search the trac)

*addmonsterdrop <monster id>,<item id>,<rate>;
*addmonsterdrop "<monster name>",<item id>,<rate>;
*delmonsterdrop <monster id>,<item id>;
*delmonsterdrop "<monster name>",<item id>;

These commands will temporarily add or delete a monster drop, which will be reset
when the mob database reloads or the server shuts down. They return 1 upon success.

If the monster already drops the specified item, its drop rate will be updated with
the given rate (100 = 1%).

Examples:
    // Makes Owl Baron drop Honey at an 80% rate.
    addmonsterdrop 1295,518,8000;

    // Deletes Executioner's Mitten from Rybio.
    delmonsterdrop 1201,7017;

in order to prevent that from happening, you must remove the id card number from the mob_db of that mvp.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  161
  • Topics Per Day:  0.04
  • Content Count:  429
  • Reputation:   5
  • Joined:  11/21/11
  • Last Seen:  

-    script    sadsad    -,{
    *addmonsterdrop <1708>,<7227>,<9000>;



its not working :(( help me thankyou very much
when i @mi we can see the players ?that mob is droping card?? :)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  161
  • Topics Per Day:  0.04
  • Content Count:  429
  • Reputation:   5
  • Joined:  11/21/11
  • Last Seen:  

-    script    Sample    -1,{

function CustomRateCard;

OnNPCKillEvent:

// CustomRateCard( <MobID>,<CardID>,<Rate> );

// Rate : 1 = 0.01%  /  1000 = 10%  /  10000 = 100%

CustomRateCard( 1708,4399,300 ); // Thanatos 3% ??

CustomRateCard( 1086,4128,5000 ); // GTB 5%??

CustomRateCard( 1832,4430,5000 ); // Ifrit 5%

CustomRateCard( 1874,4145,5000 ); // Berzebub 5%

CustomRateCard( 1751,4407,300 ); // Randgris 3%

CustomRateCard( 1086,4441,300 ); // Fallen bishop

end;

function    CustomRateCard    {

    if( killedrid == getarg(0) && rand( 10000 ) <= getarg(2) ){

            getitem getarg(1),1;

            announce "[ "+strcharinfo(0)+" ] get 1 "+getitemname( getarg(1) ),0;

    }

    return;

}

}

 

is this correct?  :(

 

 

its that working on 3ceam? :(

try it

 

btw with this script you can gain 2 cards at once (normal drop+by script)

I suggest to implement theses commands on your server (rathena only, search the trac)

*addmonsterdrop <monster id>,<item id>,<rate>;
*addmonsterdrop "<monster name>",<item id>,<rate>;
*delmonsterdrop <monster id>,<item id>;
*delmonsterdrop "<monster name>",<item id>;

These commands will temporarily add or delete a monster drop, which will be reset
when the mob database reloads or the server shuts down. They return 1 upon success.

If the monster already drops the specified item, its drop rate will be updated with
the given rate (100 = 1%).

Examples:
    // Makes Owl Baron drop Honey at an 80% rate.
    addmonsterdrop 1295,518,8000;

    // Deletes Executioner's Mitten from Rybio.
    delmonsterdrop 1201,7017;

in order to prevent that from happening, you must remove the id card number from the mob_db of that mvp.

 

 

its that working on 3ceam? :(

try it

 

btw with this script you can gain 2 cards at once (normal drop+by script)

I suggest to implement theses commands on your server (rathena only, search the trac)

*addmonsterdrop <monster id>,<item id>,<rate>;
*addmonsterdrop "<monster name>",<item id>,<rate>;
*delmonsterdrop <monster id>,<item id>;
*delmonsterdrop "<monster name>",<item id>;

These commands will temporarily add or delete a monster drop, which will be reset
when the mob database reloads or the server shuts down. They return 1 upon success.

If the monster already drops the specified item, its drop rate will be updated with
the given rate (100 = 1%).

Examples:
    // Makes Owl Baron drop Honey at an 80% rate.
    addmonsterdrop 1295,518,8000;

    // Deletes Executioner's Mitten from Rybio.
    delmonsterdrop 1201,7017;

can you check the droprate percent ? :(

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

It's not correct.

// CustomRateCard( <MobID>,<CardID>,<Rate> );
// Rate : 1 = 0.01%  /  1000 = 10%  /  10000 = 100%

5% => rate 500

not 5000

CustomRateCard( 1086,4128,5000 ); // GTB 5%??

it's arithmetic, use a calculator


 

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