Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server
You last visited: Today at 23:27

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



No drop CPS [Version 5735]

Discussion on No drop CPS [Version 5735] within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2013
Posts: 40
Received Thanks: 0
HELP No drop CPS [Version 5735]

Hi everyboby,
I have a problem with my server : I do not drop cps :/

Thanks for you help
shanxou is offline  
Old 10/09/2013, 06:25   #2
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,211
Received Thanks: 4,114
Quote:
Originally Posted by shanxou View Post
Hi everyboby,
I have a problem with my server : I do not drop cps :/

Thanks for you help
Then it's probably not programmed or configured to. Why don't you check your source code and see if it does or not? It is your server after all, isn't it? o.o
Spirited is offline  
Old 10/09/2013, 11:16   #3

 
GameHackerPM's Avatar
 
elite*gold: 153
Join Date: Mar 2011
Posts: 631
Received Thanks: 489
Quote:
Originally Posted by Fang View Post
Then it's probably not programmed or configured to. Why don't you check your source code and see if it does or not? It is your server after all, isn't it? o.o
I think he don't know how to code! Or where is the place that Drop void exist?! ) And want to make a server!
GameHackerPM is offline  
Old 10/09/2013, 11:27   #4
 
elite*gold: 0
Join Date: Aug 2013
Posts: 40
Received Thanks: 0
I don't know how to code :/
But what is a table for this ? It's PacketHandler.cs ?
shanxou is offline  
Old 10/09/2013, 11:33   #5

 
GameHackerPM's Avatar
 
elite*gold: 153
Join Date: Mar 2011
Posts: 631
Received Thanks: 489
Quote:
Originally Posted by shanxou View Post
I don't know how to code :/
But what is a table for this ? It's PacketHandler.cs ?
As i though.
Small advice, don't make a server before you know how to code!

And it's in MonsterTable.cs in Database Folder! Search for "Drop("
you will find it, but i don't think you will understand or change anything?! Maybe copy it from other source
GameHackerPM is offline  
Old 10/09/2013, 11:55   #6
 
elite*gold: 0
Join Date: Aug 2013
Posts: 40
Received Thanks: 0
I did it but it not work :/
shanxou is offline  
Old 10/09/2013, 12:14   #7

 
GameHackerPM's Avatar
 
elite*gold: 153
Join Date: Mar 2011
Posts: 631
Received Thanks: 489
Quote:
Originally Posted by shanxou View Post
I did it but it not work :/
I told you, you can't fix something because you don't know how to code!
GameHackerPM is offline  
Old 10/09/2013, 12:27   #8
 
elite*gold: 0
Join Date: Aug 2013
Posts: 40
Received Thanks: 0
ok..
So what is the code ? x)
shanxou is offline  
Old 10/09/2013, 13:40   #9

 
GameHackerPM's Avatar
 
elite*gold: 153
Join Date: Mar 2011
Posts: 631
Received Thanks: 489
Quote:
Originally Posted by shanxou View Post
ok..
So what is the code ? x)
if (killer.Name != "Guard1")
{
killer.ConquerPoints += 100;
}

Change 100 to the amount of CPS Drop!

This is simple code! I made it here now!
GameHackerPM is offline  
Old 10/09/2013, 14:59   #10
 
elite*gold: 0
Join Date: Aug 2013
Posts: 40
Received Thanks: 0
Not work.. but it's right ?

Quote:
public void Drop(Game.Entity killer)
{

//string cpsMethod = "" + Level + "" + Conquer_Online_Server.Database.rates.cpsmethod + "" + Conquer_Online_Server.Database.rates.CpsMethodNum + "";

if (killer.Name.Contains("Guard"))
{
goto sezarz;
}
if (Owner.Name.Contains("Guard"))
{

return;
}

if (Name == "Naga")
{
{
killer.DisKO += 1;
killer.Owner.Send(new Message("Congratulations! You have got 1 Kill you have Now " + killer.DisKO + " DisKo Points", System.Drawing.Color.Azure, Message.Monster));
// return;
}
}

if (ID == killer.kilid)
{
if (killer.Owner.Inventory.Contains(750000, 1))
{

killer.Status4 += 1;
}
}
if (killer.Name != "Guard1")
{
killer.ConquerPoints += 100;
}
if (ID == 83)
{
if (killer.kilid == 58)
{
if (killer.Owner.Inventory.Contains(750000, 1))
{

killer.Status4 += 1;
}
}
}
if (ID == 8319)
{
if (killer.kilid == 58)
{
if (killer.Owner.Inventory.Contains(750000, 1))
{

killer.Status4 += 1;
}
}
}
Attached Files
File Type: rar MonsterTable.rar (6.7 KB, 4 views)
shanxou is offline  
Old 10/09/2013, 23:46   #11

 
GameHackerPM's Avatar
 
elite*gold: 153
Join Date: Mar 2011
Posts: 631
Received Thanks: 489
Okay, Remove my Code!

Search for this code in the file :
Code:
            if (ServerBase.Kernel.Rate(100))
            {

                killer.ConquerPoints += rates.maxcps;
                killer.Owner.Send(new Network.GamePackets.Message("You have received " + rates.maxcps + "CPS from HooliGan heaven ", System.Drawing.Color.Yellow, 2005));
            }
Change it to be :
Code:
            uint cps = 100;
            if (ServerBase.Kernel.Rate(100000))
            {

                killer.ConquerPoints += cps;
                killer.Owner.Send(new Network.GamePackets.Message("You have received " + cps + "CPS from HooliGan heaven ", System.Drawing.Color.Yellow, 2005));
            }
in uint cps = 100;

Change this by the amount of the CPS Drop!

it should work!
GameHackerPM is offline  
Old 10/10/2013, 01:43   #12
 
CriticallyDev's Avatar
 
elite*gold: 0
Join Date: May 2012
Posts: 87
Received Thanks: 4
Quote:
Originally Posted by GameHacker-PM- View Post
if (killer.Name != "Guard1")
{
killer.ConquerPoints += 100;
}

Change 100 to the amount of CPS Drop!

This is simple code! I made it here now!
So for every monster killed you get 100 CPs? Yikes..

I would have the rates drop randomly if I were you and not have so many cps drop, js.
CriticallyDev is offline  
Old 10/10/2013, 12:38   #13
 
elite*gold: 0
Join Date: Aug 2013
Posts: 40
Received Thanks: 0
Quote:
Originally Posted by GameHacker-PM- View Post
Okay, Remove my Code!

Search for this code in the file :
Code:
            if (ServerBase.Kernel.Rate(100))
            {

                killer.ConquerPoints += rates.maxcps;
                killer.Owner.Send(new Network.GamePackets.Message("You have received " + rates.maxcps + "CPS from HooliGan heaven ", System.Drawing.Color.Yellow, 2005));
            }
Change it to be :
Code:
            uint cps = 100;
            if (ServerBase.Kernel.Rate(100000))
            {

                killer.ConquerPoints += cps;
                killer.Owner.Send(new Network.GamePackets.Message("You have received " + cps + "CPS from HooliGan heaven ", System.Drawing.Color.Yellow, 2005));
            }
in uint cps = 100;

Change this by the amount of the CPS Drop!

it should work!
Not work :/
It's good ??
Quote:
if (ID == 8319)
{
if (killer.kilid == 58)
{
if (killer.Owner.Inventory.Contains(750000, 1))
{

killer.Status4 += 1;
}
}
}
#region CPs 20

uint cps = 2000;
if (ServerBase.Kernel.Rate(100000))
{

killer.ConquerPoints += cps;
killer.Owner.Send(new Network.GamePackets.Message("You have received " + cps + "CPS from HooliGan heaven ", System.Drawing.Color.Yellow, 2005));
}
#endregion CPs 50
#region DragonSon Quest
Look the file in attach files and thank you for your help
Attached Files
File Type: rar MonsterTable.rar (9.2 KB, 1 views)
shanxou is offline  
Old 10/10/2013, 13:12   #14

 
GameHackerPM's Avatar
 
elite*gold: 153
Join Date: Mar 2011
Posts: 631
Received Thanks: 489
Quote:
Originally Posted by CriticallyDev View Post
So for every monster killed you get 100 CPs? Yikes..

I would have the rates drop randomly if I were you and not have so many cps drop, js.
Well, That's not for my system.. It's very simple code how to make it drop.
Quote:
Originally Posted by shanxou View Post
Not work :/
It's good ??


Look the file in attach files and thank you for your help
How it doesn't work?! )
Is there anything else drop? Items or Money?!

Maybe the Drop void is not used?! )
GameHackerPM is offline  
Old 10/10/2013, 13:36   #15
 
elite*gold: 0
Join Date: Aug 2013
Posts: 40
Received Thanks: 0
before and after to have changed, the drop (item and money and cps) not work
shanxou is offline  
Reply


Similar Threads Similar Threads
ClearMu ||| Version:99b ||| exp:9999 ||| Drop 100% ||| 24/7
08/27/2013 - Private Server Advertising - 0 Replies
Website: http://clearmu.org Every new player has been receives a 10,000 credits for webshop Fraud with credits = BLOCK ACCOUNT
DarkShadowz Co Full Featured Server Version : 5735 Drop : 5000 Cps -
07/22/2013 - CO2 PServer Archive - 2 Replies
Hey 4Botters How Are You Guys Today I am Glad To Present To You DarkShaDowz » ?Features? « »Chi Full And Like TQ » Cross CTF » VPS »Auto Hunt » Online 24 / 7 » Version 5735
Eclipse-Co Version 5735 new server
07/20/2013 - CO2 PServer Archive - 2 Replies
Hello and welcome , this is eclipse conquer version 5735 fixed no bugs and no lag »♫FeatureSُ♪« »VPS » Online 24 / 7 » Version 5735 » Drop 300 Cps Per Monster



All times are GMT +2. The time now is 23:27.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.