|
You last visited: Today at 14:44
Advertisement
Progress bar not working.
Discussion on Progress bar not working. within the CO2 Private Server forum part of the Conquer Online 2 category.
04/15/2013, 15:06
|
#16
|
elite*gold: 0
Join Date: Apr 2012
Posts: 58
Received Thanks: 1
|
Quote:
Originally Posted by { Angelius }
A- You don't have to use the get/set property because you will never have to read any data from that packet.
B- I don't think that a Timeout of 2 seconds will work try 4+
C- I see you are setting ->
gData.UID = client.Entity.UID;
gData.dwParam = 220;
gData.ID = 164;
But you are not really writing those values to the buffer.
So a simple byte array wold do the job perfectly without complicating things, Something like...
PHP Code:
void Sen_Effect(IClient Client, uint data_8, ushort Type, ushort direction, uint LoopTime, string EffectName)
{
//38 + 1 + 8 + EffectName.Length = 47 + EffectName.Length
//Where 38 is the normal 10010 packet length, 1 for the extra byte at offset 38, 8 for the Server Stamp
byte[] Packet = new byte[47 + EffectName.Length];
WriteUInt16(Packet.Length - 8, 0, Packet);
WriteUInt16(10010, 2, Packet);
WriteUInt32(Client.UID, 4, Packet);
WriteUInt32(data_8, 8, Packet);
WriteUInt16(Type, 20, Packet);
WriteUInt16(direction, 22, Packet);
WriteUInt32(LoopTime, 32, Packet);
WriteByte(1, 37, Packet);
WriteByte(EffectName.Length, 38, Packet);
WriteString(EffectName, 39, Packet);
Client.send(Packet);
}
To call it -> Sen_Effect(Client, 220, 164, 1, 5, "Pick");
Good luck.
|
Nice one thanks Adel
|
|
|
 |
|
Similar Threads
|
C# Bot, In Progress Looking For Help
08/22/2012 - Rappelz - 38 Replies
Request
If you have interest, and have experience working in any c language and are intersted in working on this with me post here or pm me. Currently there are 3 people working on the project.
So far Its only in C#. But If you code in another .net language and make a dll. that's fine too.
Whats Done/Works
A bot in C# Using WPF, called "Rappelz X Bot".
I have spent about 6 months on this.
The Bot can currently level to 15 on its own.
Details
|
[HELP]Some progress
03/14/2012 - Rappelz Private Server - 4 Replies
Hi
We have been developing such things as pet master class + cube + Lydin + cube dungeon but not 100%
about master class I have all resource + I add some skill in db (Tree_display,Job_Resource,Tree_Resource) but the problem doesn't display
http://data.imagup.com/12/1146421033.JPG
For the cube dungeon I want to join the location with gate .
|
Bar Progress HP Pet
09/11/2010 - Last Chaos - 0 Replies
$HPPETLEISTE = GUICtrlCreateProgress(25, 255, 225, 10)
GUICtrlSetBkColor(-1, 16777215)
$PETHP = GUICtrlCreateLabel("HP Pet", 25, 240, 40, 15)
$INPUTHPPET = GUICtrlCreateLabel("0", 70, 240, 50, 15)
Global $AV_HPPET=
Global $HPPET2 = 0
|
Hax Bot New Bot (still in progress)
09/25/2009 - Silkroad Online - 57 Replies
- Attacking monsters 100%
- Skills 100%
- Buffs 100%
- Sitting down based on HP 100%
- Sitting down based on MP 100%
- Auto login (type your info once and wait) 100%
- Inventory parsed (this includes - movement, swap, combine, pickup - for guild, player, pet, storage) 100%
- Minimize to tray 100%
- Going clientless 100%
- Going client 100%
|
Progress GG ???
01/13/2009 - Lineage 2 - 1 Replies
Hey all first i'd like to say hello to all since this is one of my first posts :P.
Anyway, i,ve been doing a little research about .des files. and i figured out that its encrypted with a way of coding called cryptography. It kinda creates a key for the encrypted file. Now for the real developers among us, i,ve got a wiki site where u can explore it and hopefully find a way to by pass gg and share it with us.
for interlude, hellbound gracia w/e. Just any kind of client gg.
Well i did my...
|
All times are GMT +1. The time now is 14:45.
|
|