You last visited: Today at 01:37
Advertisement
[-----Help-----]
Discussion on [-----Help-----] within the CO2 Private Server forum part of the Conquer Online 2 category.
04/02/2013, 17:35
#1
elite*gold: 0
Join Date: Mar 2013
Posts: 41
Received Thanks: 1
[-----Help-----]
[-----Help-----]
Look The Pic and help me Pleasa
[-----Help-----]
04/02/2013, 17:59
#2
elite*gold: 0
Join Date: Mar 2013
Posts: 19
Received Thanks: 1
client, The file for that weapon Seems broken... Look into what its ID is and look in the client
04/02/2013, 18:57
#3
elite*gold: 0
Join Date: Mar 2013
Posts: 41
Received Thanks: 1
no Man.
this from Sourec
04/02/2013, 20:11
#4
elite*gold: 0
Join Date: Jun 2012
Posts: 179
Received Thanks: 55
Let me guess, the problem is:
A player named "ang~shank" passed by me, and I saw him holding GrimHammer (i don't remember the name of that Artifact exactly) but when I viewed his equipment, he was just equipping an ArchonWanda PoleAxe actually. Any possible fix?
Answer:
I guess, the problem is either in the client (wrong textures) or in the source (wrong offsets).
04/03/2013, 00:20
#5
elite*gold: 0
Join Date: Dec 2009
Posts: 583
Received Thanks: 119
Quote:
Originally Posted by
~Crystaline
Let me guess, the problem is:
A player named "ang~shank" passed by me, and I saw him holding GrimHammer (i don't remember the name of that Artifact exactly) but when I viewed his equipment, he was just equipping an ArchonWanda PoleAxe actually. Any possible fix?
Answer:
I guess, the problem is either in the client (wrong textures) or in the source (wrong offsets).
The dude in the picture has a grim hammer equipped.
I am sure he wants to know how he is using a 2-hander with a 1-hander.
04/03/2013, 00:58
#6
elite*gold: 0
Join Date: Aug 2007
Posts: 1,525
Received Thanks: 230
Guyz what he means that How to fix the problem that allow the players to equip 2Handed Weps with 1 Handed .. Answer is in PacketHandler.cs at EquipItem Void ...
04/03/2013, 16:55
#7
elite*gold: 0
Join Date: Jul 2008
Posts: 874
Received Thanks: 239
check this
PHP Code:
if (( state . Equipment . TryGetItem (( byte ) 4 ) != null ) && PacketHandler . IsTwoHand ( state . Equipment . TryGetItem (( byte ) 4 ). ID ) && ! state . Spells . ContainsKey ( 0x2847 )) { if ((( state . Equipment . TryGetItem (( byte ) 4 ) != null ) && ( state . Equipment . TryGetItem (( byte ) 4 ). ID >= 0x7a24d )) && ( state . Equipment . TryGetItem (( byte ) 4 ). ID <= 0x7a2cd )) { return; } state . Equipment . Remove ( 5 ); } if ((( state . Equipment . TryGetItem (( byte ) 4 ) != null ) && ( state . Equipment . TryGetItem (( byte ) 4 ). ID >= 0x66c8b )) && ( state . Equipment . TryGetItem (( byte ) 4 ). ID <= 421439 )) { state . Equipment . Remove ( 5 ); } if (( state . Equipment . TryGetItem (( byte ) 24 ) != null ) && PacketHandler . IsTwoHand ( state . Equipment . TryGetItem (( byte ) 24 ). ID ) && ! state . Spells . ContainsKey ( 0x2847 )) { if ((( state . Equipment . TryGetItem (( byte ) 24 ) != null ) && ( state . Equipment . TryGetItem (( byte ) 24 ). ID >= 0x7a24d )) && ( state . Equipment . TryGetItem (( byte ) 24 ). ID <= 0x7a2cd )) { return; } state . Equipment . Remove ( 25 ); } if ((( state . Equipment . TryGetItem (( byte ) 24 ) != null ) && ( state . Equipment . TryGetItem (( byte ) 24 ). ID >= 0x66c8b )) && ( state . Equipment . TryGetItem (( byte ) 24 ). ID <= 421439 )) { state . Equipment . Remove ( 25 ); }
04/03/2013, 17:05
#8
elite*gold: 0
Join Date: Mar 2013
Posts: 41
Received Thanks: 1
Abdo Thanks
( ya abdo a7d el code feeeeeeeeeeeeen )
04/03/2013, 17:28
#9
elite*gold: 0
Join Date: Aug 2007
Posts: 1,525
Received Thanks: 230
Quote:
Originally Posted by
abdoumatrix
check this
PHP Code:
private static void StatusFlagChange_Execute ()
{
while ( true )
{
Time32 now = Time32 . Now ;
foreach ( GameState state in Values )
{
if ( state . Socket . Connected && ( state . Entity != null ))
{
if (( state . Equipment . TryGetItem (( byte ) 4 ) != null ) && PacketHandler . IsTwoHand ( state . Equipment . TryGetItem (( byte ) 4 ). ID ) && ! state . Spells . ContainsKey ( 0x2847 ))
{
if ((( state . Equipment . TryGetItem (( byte ) 4 ) != null ) && ( state . Equipment . TryGetItem (( byte ) 4 ). ID >= 0x7a24d )) && ( state . Equipment . TryGetItem (( byte ) 4 ). ID <= 0x7a2cd ))
{
return;
}
state . Equipment . Remove ( 5 );
}
if ((( state . Equipment . TryGetItem (( byte ) 4 ) != null ) && ( state . Equipment . TryGetItem (( byte ) 4 ). ID >= 0x66c8b )) && ( state . Equipment . TryGetItem (( byte ) 4 ). ID <= 421439 ))
{
state . Equipment . Remove ( 5 );
}
if (( state . Equipment . TryGetItem (( byte ) 24 ) != null ) && PacketHandler . IsTwoHand ( state . Equipment . TryGetItem (( byte ) 24 ). ID ) && ! state . Spells . ContainsKey ( 0x2847 ))
{
if ((( state . Equipment . TryGetItem (( byte ) 24 ) != null ) && ( state . Equipment . TryGetItem (( byte ) 24 ). ID >= 0x7a24d )) && ( state . Equipment . TryGetItem (( byte ) 24 ). ID <= 0x7a2cd ))
{
return;
}
state . Equipment . Remove ( 25 );
}
if ((( state . Equipment . TryGetItem (( byte ) 24 ) != null ) && ( state . Equipment . TryGetItem (( byte ) 24 ). ID >= 0x66c8b )) && ( state . Equipment . TryGetItem (( byte ) 24 ). ID <= 421439 ))
{
state . Equipment . Remove ( 25 );
}
da 7al badel laken msh 2sasy . w 3matan msh mtkwed kois
04/03/2013, 17:32
#10
elite*gold: 0
Join Date: Mar 2013
Posts: 41
Received Thanks: 1
Help
type a7d el code fen ya sa7py
04/03/2013, 18:01
#11
elite*gold: 0
Join Date: Jul 2008
Posts: 874
Received Thanks: 239
Quote:
Originally Posted by
shadowman123
da 7al badel laken msh 2sasy . w 3matan msh mtkwed kois
enlighten me please.
(we equip aslan tmam we kolo bas hya aslan bt7wsal feen we feen ya3ny tahnega)
04/03/2013, 18:19
#12
elite*gold: 0
Join Date: Aug 2007
Posts: 1,525
Received Thanks: 230
la2 el Equip msh salem la2en el nas 3ndak bt7ot el Wand w m3aha club fel ALternate w b3den tbadel ... fa kda enta 3ndak moshkila fel Alternate wel Equiping 3matan
04/03/2013, 18:31
#13
elite*gold: 0
Join Date: Jun 2012
Posts: 179
Received Thanks: 55
You guys still don't wanna follow the forum rules? Or isn't it clear enough to you guys that only post it in English or German.
04/04/2013, 02:32
#14
elite*gold: 0
Join Date: Dec 2009
Posts: 583
Received Thanks: 119
Quote:
Originally Posted by
~Crystaline
You guys still don't wanna follow the forum rules? Or isn't it clear enough to you guys that only post it in English or German.
Every language is allowed not just English and German.
04/04/2013, 04:58
#15
elite*gold: 12
Join Date: Jul 2011
Posts: 8,288
Received Thanks: 4,196
Shadowman123, you've violated this rule many times now.
Stop changing the languages of threads.
All times are GMT +2. The time now is 01:38 .