|
You last visited: Today at 06:43
Advertisement
Release:UltimateCo
Discussion on Release:UltimateCo within the CO2 Private Server forum part of the Conquer Online 2 category.
09/20/2008, 21:17
|
#1
|
elite*gold: 0
Join Date: Sep 2008
Posts: 92
Received Thanks: 21
|
Release:UltimateCo
A noob source 
PowerSourceCo EDITED
Quote:
-exp potion(Keving)
-GW work 'command' like /gwstart
-SDG effect (noob code)
-cool effect by alex
-Team leader gained vps
|
like commands
/revive
/stamina
and many others
i dont fixed any1 problem connection 
server restart 30 mins
sorry for my bad inglish
|
|
|
09/20/2008, 21:18
|
#2
|
elite*gold: 0
Join Date: Jul 2008
Posts: 103
Received Thanks: 52
|
name is in use but nice
|
|
|
09/20/2008, 21:34
|
#3
|
elite*gold: 0
Join Date: Sep 2008
Posts: 92
Received Thanks: 21
|
thx
|
|
|
09/20/2008, 22:47
|
#4
|
elite*gold: 1142
Join Date: Aug 2006
Posts: 2,464
Received Thanks: 1,162
|
Thanks for being the most honest privateserver form.
|
|
|
09/20/2008, 22:49
|
#5
|
elite*gold: 20
Join Date: Jan 2008
Posts: 1,042
Received Thanks: 252
|
Nice to see you releasing stuff to this...  wonderful epvp/conquer community
|
|
|
09/20/2008, 22:50
|
#6
|
elite*gold: 1142
Join Date: Aug 2006
Posts: 2,464
Received Thanks: 1,162
|
Lol haydz?
|
|
|
09/20/2008, 23:13
|
#7
|
elite*gold: 20
Join Date: Jan 2008
Posts: 2,338
Received Thanks: 490
|
Nice release^^
|
|
|
09/21/2008, 00:38
|
#8
|
elite*gold: 0
Join Date: May 2007
Posts: 1,195
Received Thanks: 457
|
Lol... When I was downloading this my net went crazy and the DL speed was 5700 kb/s and it downloaded in 1 sec (Totally strange)... Anyways this source with some updates (some -> *some more) can be good
|
|
|
09/21/2008, 05:47
|
#9
|
elite*gold: 0
Join Date: Jan 2008
Posts: 145
Received Thanks: 91
|
@glupkotrup
maybe thats your very good luck! hehe
|
|
|
09/21/2008, 14:56
|
#10
|
elite*gold: 0
Join Date: May 2007
Posts: 1,195
Received Thanks: 457
|
Nah... Here in the net cafe the speed is 170.000 DL and 100.000 UP
|
|
|
09/21/2008, 16:07
|
#11
|
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
|
Hm, doesnt look that bad
well as glup said, need some more ****
|
|
|
09/22/2008, 16:11
|
#12
|
elite*gold: 0
Join Date: Jun 2007
Posts: 145
Received Thanks: 8
|
hello
i am using ultmateco source how can i do for more drop Dbz
and Drop +4 +5 +6 stones but not more
|
|
|
09/22/2008, 16:13
|
#13
|
elite*gold: 0
Join Date: Aug 2006
Posts: 227
Received Thanks: 57
|
Find the Place where DB drops look the If maybe OtherChanSuccess(X)
x = Smaller ( Rare ) like 5-8
x = Bigger = ( Many Drop ) like 10-20
|
|
|
09/22/2008, 17:19
|
#14
|
elite*gold: 0
Join Date: Sep 2008
Posts: 92
Received Thanks: 21
|
UPDATED just a code wrong sorry.. go to database.cs search for
Quote:
|
public static void GetCharInfo(Character Charr, string UserName)
|
and replace for this,
Quote:
public static void GetCharInfo(Character Charr, string UserName)
{
MySqlDataAdapter DataAdapter = null;
DataSet DSet = new DataSet();
try
{
DataAdapter = new MySqlDataAdapter("SELECT * FROM `Characters` WHERE `Account` = '" + UserName + "'", ExternalDatabase.Connection);
DataAdapter.Fill(DSet, "Character");
if (DSet != null && DSet.Tables["Character"].Rows.Count > 0)
{
DataRow DR = DSet.Tables["Character"].Rows[0];
Charr.UID = (uint)DR["UID"];
Charr.Name = (string)DR["CharName"];
Charr.Job = Convert.ToByte((uint)DR["Job"]);
Charr.Level = Convert.ToByte((uint)DR["Level"]);
Charr.Exp = (uint)DR["Exp"];
Charr.Model = Convert.ToUInt16((uint)DR["Model"]);
Charr.Avatar = Convert.ToUInt16((uint)DR["Avatar"]);
Charr.Hair = Convert.ToUInt16((uint)DR["Hair"]);
Charr.LocX = Convert.ToUInt16((uint)DR["LocationX"]);
Charr.LocY = Convert.ToUInt16((uint)DR["LocationY"]);
Charr.LocMap = Convert.ToUInt16((uint)DR["LocationMap"]);
Charr.Str = Convert.ToUInt16((uint)DR["Strength"]);
Charr.Agi = Convert.ToUInt16((uint)DR["Agility"]);
Charr.Vit = Convert.ToUInt16((uint)DR["Vitality"]);
Charr.Spi = Convert.ToUInt16((uint)DR["Spirit"]);
Charr.Silvers = (uint)DR["Money"];
Charr.CPs = (uint)DR["CPs"];
Charr.CurHP = Convert.ToUInt16((uint)DR["CurrentHP"]);
Charr.PKPoints = Convert.ToUInt16((uint)DR["PKPoints"]);
Charr.RBCount = Convert.ToByte((uint)DR["RBCount"]);
Charr.PackedInventory = (string)DR["Inventory"];
Charr.PackedEquips = (string)DR["Equipment"];
Charr.PackedSkills = (string)DR["Skills"];
Charr.PackedProfs = (string)DR["Profs"];
Charr.WHSilvers = (uint)DR["WHMoney"];
Charr.QuestKO = (uint)DR["QuestKO"];
Charr.KO = Convert.ToUInt16((uint)DR["KO"]);
Charr.OldKO = Convert.ToUInt16((uint)DR["OldKO"]);
Charr.PackedWHs = (string)DR["Warehouses"];
Charr.PackedFriends = (string)DR["Friends"];
Charr.PackedEnemies = (string)DR["Enemies"];
Charr.QuestMob = (string)DR["QuestMob"];
Charr.VP = (uint)DR["VP"];
Charr.GuildDonation = (uint)DR["GuildDonation"];
Charr.StatP = Convert.ToUInt16((uint)DR["StatPoints"]);
Charr.GuildID = Convert.ToUInt16((uint)DR["MyGuild"]);
Charr.GuildPosition = Convert.ToByte((uint)DR["GuildPos"]);
Charr.PrevMap = Convert.ToUInt16((uint)DR["PrevMap"]);
if (Guilds.AllGuilds.Contains(Charr.GuildID))
Charr.MyGuild = (Guild)Guilds.AllGuilds[Charr.GuildID];
Charr.MinAtk = Charr.Str;
Charr.MaxAtk = Charr.Str;
Charr.Potency = Charr.Level;
Charr.RealModel = Charr.Model;
Charr.RealAvatar = Charr.Avatar;
Charr.MaxHP = Charr.BaseMaxHP();
Charr.RealAgi = Charr.Agi;
Charr.dexptime = (uint)DR["dexptime"];
Charr.dexp = Convert.ToByte(DR["dexp"]);
}
else
General.WriteLine("Char not found.");
}
catch (Exception Exc) { General.WriteLine(Convert.ToString(Exc)); }
}
|
|
|
|
09/22/2008, 22:34
|
#15
|
elite*gold: 0
Join Date: Aug 2006
Posts: 227
Received Thanks: 57
|
Maybe tell that the EXPPot is from me write on first post that u got it from me
|
|
|
Similar Threads
|
[Release] UltimateCo
09/18/2009 - CO2 PServer Guides & Releases - 25 Replies
Hello. This is nooby source for beginners. Hope it helps.
This is what server includes:
|
Help with UltimateCo source!!!???
08/24/2009 - CO2 Private Server - 7 Replies
Ok, i'm using ultimateco source. I don't know how to change the name of the server for ppl to see when they log on the game???
|
[HELP] UltimateCO Source
09/28/2008 - CO2 Private Server - 8 Replies
hello
i am using ultmateco source how can i do for more drop Dbz
and Drop +4 +5 +6 stones but not more
|
All times are GMT +1. The time now is 06:44.
|
|