|
You last visited: Today at 17:23
Advertisement
[Question] Whisper Bug Help?
Discussion on [Question] Whisper Bug Help? within the CO2 Private Server forum part of the Conquer Online 2 category.
03/21/2011, 12:05
|
#1
|
elite*gold: 0
Join Date: Jan 2011
Posts: 63
Received Thanks: 1
|
[Question] Whisper Bug Help?
Read this and guess u understand what i need help to:
VERSON: 5165
THIS IS ME AND ANOTHER DUDE IN MSN. HE TOLD ME TO ASK IN ELITEPVPERS  Hope you understand what i mean!
I changed the names to ME and HIM ! hehe
Code:
ME says:
[COLOR="Red"]on MY server
when people whisper to other people
then can only see what the other "people" says in the whisper "BOX"[/COLOR]
HIM says:
oh
ME says:
not what the wrote!
HIM says:
you're not sending whisper details
[COLOR="Red"]packet sniff TQ's[/COLOR]
and u'll see
ME says:
what u mean?
is it the source?
HIM says:
lol
[COLOR="Red"]packet sniff[/COLOR]
u don't know what that is?
ME says:
no
|
|
|
03/21/2011, 13:41
|
#2
|
elite*gold: 0
Join Date: Nov 2010
Posts: 1,162
Received Thanks: 370
|
Code:
Offset Type Value
0 ushort 32 + TotalStringLength
2 ushort 1004
4 uint Chat_Colour
8 uint enum("Chat_Type")
12 uint Chat_ID
16 uint Unknown_A
20 uint Unknown_B
24 byte String_Count
25 byte String_From_Length
26 string String_From
27 + Pos byte String_To_Length
28 + Pos string String_To
29 + Pos byte String_Suffix_Length
30 + Pos string String_Suffix
31 + Pos byte String_Message_Length
32 + Pos string String_Message
|
|
|
03/21/2011, 13:45
|
#3
|
elite*gold: 0
Join Date: Jan 2011
Posts: 63
Received Thanks: 1
|
Quote:
Originally Posted by Syst3m_W1z4rd
Code:
Offset Type Value
0 ushort 32 + TotalStringLength
2 ushort 1004
4 uint Chat_Colour
8 uint enum("Chat_Type")
12 uint Chat_ID
16 uint Unknown_A
20 uint Unknown_B
24 byte String_Count
25 byte String_From_Length
26 string String_From
27 + Pos byte String_To_Length
28 + Pos string String_To
29 + Pos byte String_Suffix_Length
30 + Pos string String_Suffix
31 + Pos byte String_Message_Length
32 + Pos string String_Message

|
is that for 5165?
and where do i add it?
|
|
|
03/21/2011, 18:43
|
#4
|
elite*gold: 0
Join Date: Feb 2011
Posts: 335
Received Thanks: 170
|
Quote:
Originally Posted by EternityViruz
is that for 5165?
and where do i add it?
|
Dmap.cs
|
|
|
03/21/2011, 18:59
|
#5
|
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,380
|
That's also not what he needs.
He needs the whisper info string. Basically when someone whispers you, your client will request a string subtype (26? something like that, just look in your string packet handling subtypes).
That needs to be responded to with a structured string.
Example from the hellmouth source I released. NOTE: it's using very few of the possible values and is for like 200+ patches later then you are trying to do... it's just an example
-Pull the target name from the packet (it's the first string in the string packet)
-Create a string structured something like... "targetUID TargetLevel TargetBattlePower # # TargetSpouse GenderBool"
-Send the string packet to whoever requested it.
Note: the #'s can be filled in to add more things... IE: nobility rank? Maybe flower rank or w/e else could be in the box
SOMETHING like that
I think I may have referenced impulse's source when writing it... so credits to him.
Now it will work just fine ^^. Until this happens the client will not add new things to the whisper box because it's simply 'waiting' for a response from the server.
|
|
|
03/21/2011, 19:05
|
#6
|
elite*gold: 0
Join Date: Nov 2010
Posts: 1,162
Received Thanks: 370
|
Quote:
Originally Posted by pro4never
That's also not what he needs.
He needs the whisper info string. Basically when someone whispers you, your client will request a string subtype (26? something like that, just look in your string packet handling subtypes).
That needs to be responded to with a structured string.
Example from the hellmouth source I released. NOTE: it's using very few of the possible values and is for like 200+ patches later then you are trying to do... it's just an example
-Pull the target name from the packet (it's the first string in the string packet)
-Create a string structured something like... "targetUID TargetLevel TargetBattlePower # # TargetSpouse GenderBool"
-Send the string packet to whoever requested it.
Note: the #'s can be filled in to add more things... IE: nobility rank? Maybe flower rank or w/e else could be in the box
SOMETHING like that
I think I may have referenced impulse's source when writing it... so credits to him.
Now it will work just fine ^^. Until this happens the client will not add new things to the whisper box because it's simply 'waiting' for a response from the server.
|
You also need to give him the code and exact places to paste it.
|
|
|
03/21/2011, 19:23
|
#7
|
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,380
|
Meh, it's fun. You get to watch as they try to beg after you've already given them the solution.
^^ I try to avoid spoonfeeding when possible.
|
|
|
03/21/2011, 22:02
|
#8
|
elite*gold: 0
Join Date: Jan 2011
Posts: 63
Received Thanks: 1
|
Quote:
Originally Posted by pro4never
Meh, it's fun. You get to watch as they try to beg after you've already given them the solution.
^^ I try to avoid spoonfeeding when possible.
|
what u mean dude?
|
|
|
03/22/2011, 16:41
|
#9
|
elite*gold: 0
Join Date: Sep 2008
Posts: 1,683
Received Thanks: 506
|
Quote:
Originally Posted by pro4never
Meh, it's fun. You get to watch as they try to beg after you've already given them the solution.
^^ I try to avoid spoonfeeding when possible.
|
You can always avoid spoonfeeding, yet you seem never to.
|
|
|
03/22/2011, 16:56
|
#10
|
elite*gold: 20
Join Date: Mar 2006
Posts: 6,126
Received Thanks: 2,518
|
Quote:
Originally Posted by Basser
You can always avoid spoonfeeding, yet you seem never to.
|
A push in the right direction != spoonfeeding.
|
|
|
 |
Similar Threads
|
[Question] Whisper Bug?
03/15/2011 - CO2 Private Server - 5 Replies
Hello :)
im having a bug on my server! Hmm..
when people is whispering to eatchother( Normal players, GM and PM's)
then cant see what they type, the whisper box is blank, like it was empty!
can someone show me a fix for it?
i've been looking around, but i cant find the one that fix that they see the text
PS: 5165 - NewestCOServer
|
! Whisper neu !
01/16/2011 - WarRock - 11 Replies
Hey Community,
Ich wollt euch drauf hinweisen, dass die Whisper funktion neu gemacht wurde.
Nur so als Information :D
Lg.
|
Gm Whisper
08/30/2009 - PW Hacks, Bots, Cheats, Exploits - 0 Replies
Hello,
I was wondering if someone could make it so when a GM whispers me I would auto-disconnect / perfect world tab in my task bar would flash yellow / Make a program for me to view my whispers when not in game. This would be a great help to me as I wouldn't have to "babysit" my char so much when botting :)
Please get back to me on this :D
|
Question | One Picture At Whisper.
08/15/2008 - CO2 Private Server - 2 Replies
Hey.
when someone whisper me, i see his face there is alot of images of player faces, my question is if i can edit conquer folder to see only 2 images one for boy and one for girl or 1 images for both. (its could even be error picture like i uploaded) that you will see at conquer folder at playerface.
That the folder i have found that connect with Playerface+Whispers
Conquer 2.0\ani\PlayerFace.ani
Conquer 2.0\data\PlayerFace\JPG\16
|
Whisper Alert!!!Alerts you when you get a whisper.
06/16/2007 - CO2 Bots & Macros - 37 Replies
Hey Hey, This was requested on forum somewhere..lol My 3rd and I think useful contribution.
It will alert you if you have a whisper when marketing.
Settings:
Desktop 1024,768 CO 1024,768
Whisper color=Dark Blue (Set in your chat options) *make sure no chats other than Whisper are using Dark Blue.
|
All times are GMT +1. The time now is 17:23.
|
|