Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server > CO2 PServer Guides & Releases
You last visited: Today at 06:09

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

Advertisement



[RELEASE] Random Things For All Types Of Sources!

Discussion on [RELEASE] Random Things For All Types Of Sources! within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.

Reply
 
Old   #1
 
elite*gold: 20
Join Date: Aug 2009
Posts: 254
Received Thanks: 28
[RELEASE] Random Things For All Types Of Sources!

Well Guys i havent really released much, imma be making some random things for all types of sources, To try to improve my coding, yes im not great at coding, i can do it though, I'll try to make something new each day, I'll be posting things such as, NPC's, Quests, Commands, Alot more i cannot think about at moment.

LOTF
Santa Claus
/Drop
CoEmu

Binary's

I do ask you guys to please press thanks.
LookBehindYou is offline  
Thanks
1 User
Old 11/05/2009, 16:54   #2
 
elite*gold: 0
Join Date: Sep 2009
Posts: 260
Received Thanks: 59
Thumbs up!
ImmortalYashi is offline  
Old 11/05/2009, 16:55   #3
 
elite*gold: 20
Join Date: Aug 2009
Posts: 254
Received Thanks: 28
Thanks, imma try adding more each day, it's not easy though when im trying to code my own server at the same time xD
LookBehindYou is offline  
Old 11/05/2009, 16:57   #4
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,765
Received Thanks: 382
why not just PeTes, all things are there and is for both, santa etc. are already there also:

and you even dont give credit to the persons that have made them

Santa made by:
~Demented~

Drop Commands made by:
kinshi88
Fish* is offline  
Old 11/05/2009, 17:01   #5
 
elite*gold: 20
Join Date: Aug 2009
Posts: 254
Received Thanks: 28
Dude, All npcs are basically the same, no one can accuse people for saying thats somebody elses npc, however i did take little bits from NPC's not the full ones though, i coded more than half of the npc's which makes them my own work.
LookBehindYou is offline  
Old 11/05/2009, 17:02   #6
 
elite*gold: 0
Join Date: Sep 2009
Posts: 260
Received Thanks: 59
Hey wtf,

What are you on about? It doesn't seems like he Copy and Pasted them?
Please one more time shut your mouth if you have nothing usefull to say.

Seeyou,
Yashi.
ImmortalYashi is offline  
Old 11/05/2009, 17:26   #7
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,765
Received Thanks: 382
Is exactly 100% the same and yes you can make them different.
You have just edited NPC number and what they say.
Thats not a release.
And why in the santa npc, why does the items come in exactly same as in the other code?
Is only coding if all is made by you.
There is big different between coding and editing.

Coding = You have self made everything on the "code"
Edit = You have copied a code and edit something in it
WannabeCoded(Noob editing) = You ahve copied a code and edited something in it and claim all credits to your self.
Sorry to say it.
and why is your drop commands same as kinshis?
This is from kinshis:
Code:
                                            if (Splitter[0] == "/drop")
                                            {
                                                uint MoneyDrops = 0;
                                                byte Repeat = byte.Parse(Splitter[2]);
                                                for (int i = 0; i < Repeat; i++)
                                                {
                                                    if (Splitter[1] == "db")
                                                    {
                                                        string Item = "1088000-0-0-0-0-0";
                                                        DroppedItem item = DroppedItems.DropItem(Item, (uint)(MyChar.LocX - General.Rand.Next(4) + General.Rand.Next(4)), (uint)(MyChar.LocY - General.Rand.Next(4) + General.Rand.Next(4)), (uint)MyChar.LocMap, MoneyDrops);
                                                        World.ItemDrops(item);
                                                    }
                                                    if (Splitter[1] == "met")
                                                    {
                                                        string Item = "1088001-0-0-0-0-0";
                                                        DroppedItem item = DroppedItems.DropItem(Item, (uint)(MyChar.LocX - General.Rand.Next(4) + General.Rand.Next(4)), (uint)(MyChar.LocY - General.Rand.Next(4) + General.Rand.Next(4)), (uint)MyChar.LocMap, MoneyDrops);
                                                        World.ItemDrops(item);
                                                    }
                                                }
                                            }
This is yours:
Code:
if (Splitter[0] == "/drop")
{
uint MoneyDrops = 0;
byte Repeat = byte.Parse(Splitter[2]);
for (int i = 0; i < Repeat; i++)
{
if (Splitter[1] == "DragonBall")
{
string Item = "1088000-0-0-0-0-0";
DroppedItem item = DroppedItems.DropItem(Item, (uint)(MyChar.LocX - General.Rand.Next(7) + General.Rand.Next(7)), (uint)(MyChar.LocY - General.Rand.Next(7) + General.Rand.Next(7)), (uint)MyChar.LocMap, MoneyDrops);
World.ItemDrops(item);
}
if (Splitter[1] == "Meteor")
{
string Item = "1088001-0-0-0-0-0";
DroppedItem item = DroppedItems.DropItem(Item, (uint)(MyChar.LocX - General.Rand.Next(7) + General.Rand.Next(7)), (uint)(MyChar.LocY - General.Rand.Next(7) + General.Rand.Next(7)), (uint)MyChar.LocMap, MoneyDrops);
World.ItemDrops(item);
}
}
}
and commands have big different all after who made it.

@Yashi
it is copy and paste....

Was that enough prOOOOF?


now this is my release then
(Original by PeTe Ninja)
How did i code it?
Copied his npc and
edited npc dialogs and
npc id + //Comments

GuildDirector:
Dialog:
Code:
if (CurrentNPC == 35411) // GuildControl
                            {
                                SendPacket(General.MyPackets.NPCSay("Want to enter guildwar? if you die you have to wait a little.")); // NPC Dialog
                                SendPacket(General.MyPackets.NPCLink("Send me in.", 1)); // Link (Control 1)
                                SendPacket(General.MyPackets.NPCLink("I dont want to go.", 255)); // Your Respond ( Dialog end + Link)
                                SendPacket(General.MyPackets.NPCSetFace(30)); //  NPC face
                                SendPacket(General.MyPackets.NPCFinish()); // End NPC Talk
                            }
Control:
Code:
if (CurrentNPC == 35411) // Controls for npc
                                {
                                    if (Control == 1) // What NPC do when click on send me in
                                    {
                                        Random R = new Random(); // New Random
                                        int Nr = R.Next(1, 10); // Random picks a number from 1-10 
                                        if (Nr == 1) //Random Spot 1
                                        {
                                            MyChar.Teleport(1038, 351, 341);
                                        }
                                        if (Nr == 2) //Random Spot 2
                                        {
                                            MyChar.Teleport(1038, 335, 345);
                                        }
                                        if (Nr == 3) //Random Spot 3
                                        {
                                            MyChar.Teleport(1038, 309, 369);
                                        }
                                        if (Nr == 4) //Random Spot 4
                                        {
                                            MyChar.Teleport(1038, 283, 340);
                                        }
                                        if (Nr == 5) //Random Spot 5
                                        {
                                            MyChar.Teleport(1038, 310, 327);
                                        }
                                        if (Nr == 6) //Random Spot 6
                                        {
                                            MyChar.Teleport(1038, 318, 297);
                                        }
                                        if (Nr == 7) //Random Spot 7
                                        {
                                            MyChar.Teleport(1038, 347, 309);
                                        }
                                        if (Nr == 8) //Random Spot 8
                                        {
                                            MyChar.Teleport(1038, 337, 320);
                                        }
                                        if (Nr == 9) //Random Spot 9
                                        {
                                            MyChar.Teleport(1038, 309, 293);
                                        }
                                        if (Nr == 10) //Random Spot 10
                                        {
                                            MyChar.Teleport(1038, 371, 300);
                                        }
                                    }
                                }
You think this is a release NO!
I dont think either.
Sorry to say it, but is not a release
Goodluck next time.
Fish* is offline  
Old 11/05/2009, 17:51   #8
 
elite*gold: 20
Join Date: Apr 2008
Posts: 2,281
Received Thanks: 913
Lol!
I don't mind people re-posting ****.
Give credit at least.
Even if it is n00by code =P
kinshi88 is offline  
Old 11/05/2009, 17:57   #9
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,765
Received Thanks: 382
I know.
I just told to give credits
Then they start like want to fight :O
Then i just make arguments for is copy paste
Fish* is offline  
Old 11/06/2009, 02:36   #10
 
arab4life's Avatar
 
elite*gold: 0
Join Date: Jan 2006
Posts: 430
Received Thanks: 286
make sure u dont copy samehvan codes and make them as yours
lawls.
arab4life is offline  
Thanks
1 User
Reply


Similar Threads Similar Threads
[Release] KalHackZz v0.3 + v0.4 Sources ...
03/30/2013 - Kal Hacks, Bots, Cheats & Exploits - 98 Replies
hey guys, it's time for me to quit kal now :P have to do some more important things in rl now ( school, friends, driving licens test and so on ) :P so as i dont need my sources anymore i will release them now ... old KalHackZz v0.3 src and also my new KalHackZz v0.4 ( including tradehack for pserver ) ( special credits and thx for this new built src to MoepMoep and chibis ) hope come guys of u can need this ... for all others : i know its not much, not all is my work and its bulshit...
[RELEASE] cq_action help: types & params description(translated from chinese)
09/01/2011 - EO PServer Guides & Releases - 12 Replies
Here we go: this is translation of ActionDefine.h (found in old server sources) It will help you understand the numbers in cq_action. If you are planning to build your own cq_action section, this will for sure help you. Also, you will know what are the limits of cq_action table. However there are for sure more types/params implemented in new msg servers, so not all is covered. njoy another fine release from ACME.
[RELEASE] General Data Types.
05/08/2010 - CO2 PServer Guides & Releases - 11 Replies
This is just a tiny release with the correct sub-types for the General Data . This will be a part of the things I will be dumping after I formatted my PC without being prepared. I'm sorry for all other info I still had on the CO2 PServer development, it is not available for my any more. I was going to release it all though, but not just yet. NinjaStep = 0x9C, EndFly = 0x78, GUIDialog = 0x7E, SetLocation = 0x4A, SetMapColor = 0x68, Jump = 0x89,
[Release]5089 Sources
05/25/2009 - CO2 PServer Guides & Releases - 50 Replies
#Removed
[Release] Good Sources !! ALL - in - one!!
02/20/2009 - CO2 PServer Guides & Releases - 22 Replies
I GOT GOOD SOURCES FROM ELITEPVPERS AND I WANT TO RELEASE THEM :D 1) CoV2 Source: The link:RapidShare: Easy Filehosting 2) DeathCo Source: The link:RapidShare: Easy Filehosting



All times are GMT +1. The time now is 06:10.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.