using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using KinSocket;
namespace KinConquer.Packets.Structures
{
/// <summary>
/// 0x450 (Server->Client)
/// </summary>
public unsafe struct WeaponProficiencyPacket
{
public UInt16 Size;
public UInt16 Type;
public UInt32 Experience;
public UInt32 NeededExperience;
public UInt32 ID;
public static WeaponProficiencyPacket Create()
{
WeaponProficiencyPacket packet = new WeaponProficiencyPacket();
packet.Size = 0x10;
packet.Type = 0x450;
return packet;
}
}
}
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using KinSocket;
namespace KinConquer.Packets.Structures
{
/// <summary>
/// 0x401 (Server->Client)
/// </summary>
public unsafe struct LearnWeaponProficiencyPacket
{
public UInt16 Size;
public UInt16 Type;
public UInt32 ID;
public UInt32 level;
public UInt32 Experience;
public UInt32 NeededExperience;
public LearnWeaponProficiencyPacket Create()
{
LearnWeaponProficiencyPacket packet = new LearnWeaponProficiencyPacket();
packet.Size = 0x14;
packet.Type = 0x401;
return packet;
}
}
}
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using KinSocket;
namespace KinConquer.Packets.Structures
{
/// <summary>
/// 0x420 (Server->Client)
/// </summary>
public unsafe struct TradePacket
{
public enum Types : uint
{
RequestNewTrade = 0x01,
RequestCloseTrade = 0x02,
ShowTradeWindow = 0x03,
CloseTradeWindow = 0x05,
RequestAddItemToTrade = 0x06,
RequestAddMoneyToTrade = 0x07,
DisplayMoney = 0x08,
RequestCompleteTrade = 0x0A,
DisplayConquerPoints = 0x0C,
RequestAddConquerPointsToTrade = 0x0D
}
public UInt16 Size;
public UInt16 Type;
public UInt32 dwParam;
public Types ID;
public static TradePacket Create()
{
TradePacket Packet = new TradePacket();
Packet.Size = 0x0C;
Packet.Type = 0x420;
return Packet;
}
}
}
Super Basic Multi 04/27/2010 - CO2 Exploits, Hacks & Tools - 1 Replies My first attempt at this, it looks like they changed some of the features listed in TheBoyWhoLost's multiclient guide.
So this includes only multiclient with date and time.
If you want to bypass play.exe create a shortcut to Conquer.exe
Right click the shortcut and go to Properties.
Add the word blacknull after the Target address.
(Ex; "C:\Program Files\Conquer Online 2.0\Conquer.exe" Blacknull)
uhh enjoy? Hopefully this helps someone :P
If I can learn how to enable PM commands and...
CoV Super Group - Base Building 11/26/2005 - General Gaming Discussion - 0 Replies Once you hit Level 10, you can go to the main building in Port Oakes to register for a Super Group (basically a Guild) which also entitles you to a Base.
I had some experience building a base in Beta, so lets start with basic layout. Your base to begin with will be only 1 room, the portal into it. As you enter you'll notice (with the correct permissions) that you can Edit or Upgrade your base. Editing allows the placement of new rooms, while Upgrading allows the purchase of overall terrain...