|
You last visited: Today at 07:56
Advertisement
Replacement
Discussion on Replacement within the CO2 Private Server forum part of the Conquer Online 2 category.
03/31/2012, 10:56
|
#1
|
elite*gold: 0
Join Date: Mar 2012
Posts: 286
Received Thanks: 71
|
Replacement
I need some ideas about an event replaces gw till i find the bug and fix it.
Anything guys =].
|
|
|
03/31/2012, 10:59
|
#2
|
elite*gold: 12
Join Date: Jul 2011
Posts: 8,283
Received Thanks: 4,192
|
Why not just fix it and be done with it? 
What's the bug?
|
|
|
03/31/2012, 11:05
|
#3
|
elite*gold: 0
Join Date: Mar 2012
Posts: 286
Received Thanks: 71
|
Pole don't get updated, since i checked on everything that may cause that error; i don't know wth.
|
|
|
03/31/2012, 11:09
|
#4
|
elite*gold: 0
Join Date: Aug 2007
Posts: 1,525
Received Thanks: 230
|
Actually there is nothing can replace the GW cuz its most Adored Event but i would say make Capture The Flag event its Too Fun too but CTF would cause the same bug cuz it needs updating the Flags or even making poles ..i thought about Making Qualififer Bet Guild leaders and choosing will be randomly Till becomes at last 2 GLS Qualfied then the winner get the Halo and CPs or w.e u want
|
|
|
03/31/2012, 11:11
|
#5
|
elite*gold: 0
Join Date: Mar 2012
Posts: 286
Received Thanks: 71
|
Quote:
Originally Posted by shadowman123
Actually there is nothing can replace the GW cuz its most Adored Event but i would say make Capture The Flag event its Too Fun too but CTF would cause the same bug cuz it needs updating the Flags or even making poles ..i thought about Making Qualififer Bet Guild leaders and choosing will be randomly Till becomes at last 2 GLS Qualfied then the winner get the Halo and CPs or w.e u want
|
Ikr, I'm searching for anything for replacement till i give it more time.
That event you're thinking of needs a server like trinity, needs huge guilds.
|
|
|
03/31/2012, 11:14
|
#6
|
elite*gold: 0
Join Date: Aug 2007
Posts: 1,525
Received Thanks: 230
|
Quote:
Originally Posted by ×Holo
Ikr, I'm searching for anything for replacement till i give it more time.
That event you're thinking of needs a server like trinity, needs huge guilds.
|
well my idea was bad i guess as there wont be any use or help from the Guild members So ....what i mean try to improvise Good events But as i said there is nothing that can replace the GW event
|
|
|
03/31/2012, 12:10
|
#7
|
elite*gold: 0
Join Date: Mar 2012
Posts: 286
Received Thanks: 71
|
Okay.. What I need to do to make the pole working perfectly?
gimme steps maybe i missed one.
|
|
|
03/31/2012, 12:27
|
#8
|
elite*gold: 0
Join Date: Aug 2007
Posts: 1,525
Received Thanks: 230
|
Quote:
Originally Posted by ×Holo
Okay.. What I need to do to make the pole working perfectly?
gimme steps maybe i missed one.
|
y dont u check Guild war system in the public sources i learned alot and dont forget to check how it goes in database too
|
|
|
03/31/2012, 13:40
|
#9
|
elite*gold: 0
Join Date: Mar 2009
Posts: 228
Received Thanks: 47
|
guild pole name ???
it's sob npc, u can sob spawn packet @ final round end.
Code:
int len = 32 + 8;
if (Name != "NONE")
len += Name.Length;
var buffer = new byte[len];
fixed (byte* ptr = buffer)
{
PacketBuilder.AppendHeader(ptr, buffer.Length, 1109);
*((uint*)(ptr + 4)) = 6700;
*((uint*)(ptr + 12)) = MaxHealth;
*((uint*)(ptr + 16)) = Health;
*((ushort*)(ptr + 20)) = X;
*((ushort*)(ptr + 22)) = Y;
*((ushort*)(ptr + 24)) = Mesh;
*((ushort*)(ptr + 26)) = Flag;
*((ushort*)(ptr + 28)) = Type; //17
if (Name != "NONE")
{
*((byte*)(ptr + 30)) = 1;
Packets.WriteString(Name, 32, buffer);
*((byte*)(ptr + 31)) = (byte)Name.Length;
}
}
i got it from albetros source.
|
|
|
03/31/2012, 14:28
|
#10
|
elite*gold: 0
Join Date: Mar 2012
Posts: 286
Received Thanks: 71
|
Quote:
Originally Posted by shadowman123
y dont u check Guild war system in the public sources i learned alot and dont forget to check how it goes in database too
|
Dude I want to kiss you, thanks i didn't config gw with the database. ty <3 now It's working
Quote:
Originally Posted by dego4ever
guild pole name ???
it's sob npc, u can sob spawn packet @ final round end.
Code:
int len = 32 + 8;
if (Name != "NONE")
len += Name.Length;
var buffer = new byte[len];
fixed (byte* ptr = buffer)
{
PacketBuilder.AppendHeader(ptr, buffer.Length, 1109);
*((uint*)(ptr + 4)) = 6700;
*((uint*)(ptr + 12)) = MaxHealth;
*((uint*)(ptr + 16)) = Health;
*((ushort*)(ptr + 20)) = X;
*((ushort*)(ptr + 22)) = Y;
*((ushort*)(ptr + 24)) = Mesh;
*((ushort*)(ptr + 26)) = Flag;
*((ushort*)(ptr + 28)) = Type; //17
if (Name != "NONE")
{
*((byte*)(ptr + 30)) = 1;
Packets.WriteString(Name, 32, buffer);
*((byte*)(ptr + 31)) = (byte)Name.Length;
}
}
i got it from albetros source.
|
Solved, thanks anyway :]
|
|
|
03/31/2012, 14:40
|
#11
|
elite*gold: 0
Join Date: Aug 2007
Posts: 1,525
Received Thanks: 230
|
You Welcome XHolo
|
|
|
03/31/2012, 19:00
|
#12
|
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,380
|
For future reference though...
If you can't fix a bug in an existing event then there's little>no chance that you can code an entirely custom event without creating your own slew of new bugs to fix.
Learn to fix bugs before attempting to code entire systems yourself.
|
|
|
04/01/2012, 09:24
|
#13
|
elite*gold: 0
Join Date: Mar 2012
Posts: 286
Received Thanks: 71
|
Quote:
Originally Posted by pro4never
For future reference though...
If you can't fix a bug in an existing event then there's little>no chance that you can code an entirely custom event without creating your own slew of new bugs to fix.
Learn to fix bugs before attempting to code entire systems yourself.
|
Fixing bugs is on my hands, i just didn't notice about pole in the database.. a little mistake anyone may fall into.
The real problem that you noticed a bug and left without fixing it ;]
|
|
|
 |
Similar Threads
|
Sandboxie replacement
09/13/2011 - Cabal Online - 1 Replies
hi there guy i need to find a replacement for sanboxie any 1 got a good one that can point me there
|
Replacement for Hostpotshield?
07/13/2010 - Grand Chase - 6 Replies
Any new replacement for Region Block Bypass for NAGC? Hotspotshield can't seem to connect to login server could someone clarify this?. I need a new proxy thingie . Thanks in advance
|
[HELP]Obj texture replacement
11/03/2009 - Dekaron Private Server - 10 Replies
I was trying to replace an existing item(i.e: armor) to another item by replacing its textures (that includes also replacing of skel ,mesh , anim an so on..) after replacing those I found out that the item turned pink (was that the "non-object"?) .. though I've tried also returned back the previous set-up but nothing happens... it is still the same
what did I missed?... any helpful comments & suggestions will be appreciated...:handsdown:
|
replacement
11/01/2008 - Kal Online - 7 Replies
since kal is dead a long time i'm wanna know something
what do you think is a good replacement for kal what do you play after stoped kal ?
i stoped half a year now but dunno some cool other games :P
post a list.
|
All times are GMT +1. The time now is 07:57.
|
|