Welcome to the RaGEZONE - MMORPG development forums.

Changing drop rate

This is a discussion on Changing drop rate within the Conquer Tutorials forums, part of the Conquer Online category; Hello, can some 1 explain me how tho change the drop rate or DB drop rate cause i dont know ...

Results 1 to 8 of 8
  1. #1
    Account Upgraded | Title Enabled!
    Rank
    Member +
    Join Date
    Nov 2008
    Posts
    230
    Liked
    1

    Changing drop rate

    Click
    Hello,

    can some 1 explain me how tho change the drop rate or DB drop rate cause i dont know im a nooby in this kind of things

    THX

  2. #2
    Member
    Rank
    Member
    Join Date
    Jul 2008
    Posts
    87
    Liked
    0

    Re: Changing drop rate

    first of all wrong section...why you would post something like that in the tutorial section.....
    second to answear to your question you can buy db's from mall using cps...command for cps its
    /cps ammount of them

  3. #3
    Registered
    Rank
    Member
    Join Date
    Feb 2009
    Posts
    5
    Liked
    0

    Re: Changing drop rate

    He wants to change drop rate, not get DB ...

  4. #4
    Account Upgraded | Title Enabled!
    Rank
    Member +
    Join Date
    Nov 2008
    Posts
    230
    Liked
    1

    Re: Changing drop rate

    yes i need to change the DB rate not to get i know that but where else i need to do then -.-

  5. #5
    Registered
    Rank
    Member
    Join Date
    Aug 2008
    Posts
    24
    Liked
    1

    Re: Changing drop rate

    Quote Originally Posted by patrick ster View Post
    yes i need to change the DB rate not to get i know that but where else i need to do then -.-
    2 Posts Wrong Sections Nice :)

    Ok, Drop Rates

    Open he Source Code and double click on Entities.cs The item code im using is 1088000 which is DragonBall


    Drop rates for ALL monsters

    Code:
    if (Other.ChanceSuccess(100))
    {
    string Item = 1088000-0-0-0-0-0";
     DroppedItem item = DroppedItems.DropItem(Item, (uint)(PosX - General.Rand.Next(4) + General.Rand.Next(4)), (uint)(PosY - General.Rand.Next(4) + General.Rand.Next(4)), (uint)Map, MoneyDrops);
    World.ItemDrops(item);
    }





    Making a Drop Rate for certain monster

    Open Entities.cs

    Code:
    If(Name == "Pheasant" && Other.ChanceSuccess())
    {
    string Item = "1088000-0-0-0-0-0";
    DroppedItem item = DroppedItems.DropItem(Item, (uint)(PosX - General.Rand.Next(4) + General.Rand.Next(4)), (uint)(PosY - General.Rand.Next(4) + General.Rand.Next(4)), (uint)Map, MoneyDrops);
    World.ItemDrops(item);
    {
    Now
    Code:
     if (Other.ChanceSuccess(100))
    Change to 100 to the rate you want : . 0 = impossible..... 100 = Certain to drop

  6. #6
    Account Upgraded | Title Enabled!
    Rank
    Member +
    Join Date
    Nov 2008
    Posts
    230
    Liked
    1

    Re: Changing drop rate

    thx it worked so far hmm u know maybe i got another problem when i do execute batch file and then click close (a guild said that tho me) and the first time it worked but now it doesnt work and i cant come on my server anymore and localhost/phpmyadmin didnt work he cant find the page that is my internet saying u know the problem??? or the solution

  7. #7
    Newbie
    Rank
    Member
    Join Date
    Jul 2010
    Posts
    1
    Liked
    0

    Re: Changing drop rate

    how do i open the source

  8. #8
    Account Upgraded | Title Enabled!
    Rank
    Member +
    Join Date
    Nov 2008
    Posts
    230
    Liked
    1

    Re: Changing drop rate

    Dude its nice that you responded but looks at the date.

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •