alright so this is just a question and if you want it can turn into you helping me (if you know)...so I just wanted to know does anyone know the correct case for revive here? I have searched through my source and found a case number 5454 containing something that might be related to revive here but I tested it and does not seem to work...why? cuz its probably not the CORRECT case...
94 is normal revive. Revive here is a general data put it inside Revive
alrite so I searched my whole packetHandler and thus far I have found the case 94 well here's mine and tell me if its correct or if its wrong(please tell me how to improve it by giving me examples etc...)
Code:
case 94:
{
byte RevType = Data[8];
if (RevType == 8)
PacketHandling.Revive.Handle(GC, Data);
else
PacketHandling.ReviveHere.Handle(Data, GC);
break;
}
alrite so I searched my whole packetHandler and thus far I have found the case 94 well here's mine and tell me if its correct or if its wrong(please tell me how to improve it by giving me examples etc...)
Code:
case 94:
{
byte RevType = Data[8];
if ( RevType == 8)
PacketHandling.Revive.Handle(GC, Data);
else
PacketHandling.ReviveHere.Handle(Data, GC);
break;
}
Code:
case 94:
{
byte RevType = Data[8];
if ( RevType == [COLOR="Red"]1[/COLOR])
PacketHandling.Revive.Handle(GC, Data);
else
PacketHandling.ReviveHere.Handle(Data, GC);
break;
}
It will still not work. Even so, this is half way done. You gotta make something else, just so you can actually use the button. Some sources out there already have it.
[Release]ReviveHere Code For 5165 09/21/2010 - CO2 PServer Guides & Releases - 12 Replies This is my first post on ElitePvpers
i don't know if any one released it before I made it my self i'm a c# noob btw so Go easy on me guys
first open PacketHandling\Revive
then replace everything with this
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
[QUESTION]How do i bypass Xtrap for any private server?[QUESTION] 10/12/2009 - Cabal Online - 3 Replies Exactly what the title says.
I keep on getting an xTrap error when i try and load ANY private server that uses XTrap and it's driving me absolutely insane.
I cant figure out why it's showing me the error. If anyone has any bypasser for Helix / PaRaDoX
or any other server u know that has xTrap can u either PM me the bypass or post it here pls......this is driving me nuts
Bump.