Results 1 to 10 of 10

Hybrid View

  1. #1
    arun823's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Los Angeles, California
    Posts
    523
    Reputation
    151
    Thanks
    1,899
    My Mood
    Amused

    Multi-Voice Spam

    Well, I saw Acea release only one spam message, I want you coders to decide which message to spam, not just "Fuck I dont wanna die" or "Go, Go, Go"

    This should be rather easy to figure out as well.

    Enjoy

    Code:
    if(Main->Variable->iVoiceSpam)
    {
    	Msg.Writeuint8(190);
    	Msg.Writeuint16(0);
    	Msg.Writeuint32(0);
    
    	switch(Main->Variable->iVoiceSpam)
    	{
    	case 1: Msg.Writeuint8(0); break;
    	case 2: Msg.Writeuint8(1); break;
    	case 3: Msg.Writeuint8(2); break;
    	}
    
    	switch(Main->Variable->iVoiceMessage)
    	{
    	case 0:	Msg.Writeuint8(0); break;
    	case 1:	Msg.Writeuint8(1); break;
    	case 2:	Msg.Writeuint8(2); break;				
    	case 3:	Msg.Writeuint8(3); break;
    	case 4:	Msg.Writeuint8(4); break;
    	case 5:	Msg.Writeuint8(5); break;
    	case 6:	Msg.Writeuint8(6); break;
    	case 7:	Msg.Writeuint8(7); break;			
    	case 8: Msg.Writeuint8(8); break;
    	}
    pSendToServer(Msg.Read(), MESSAGE_GUARANTEED);
    }
    Last edited by arun823; 02-18-2013 at 02:31 PM.
    Reversing is the only way to move forward.

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

    Otaviomorais (02-18-2013),steven1578 (02-18-2013)

  3. #2
    steven1578's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    CShell.dll
    Posts
    699
    Reputation
    1
    Thanks
    944
    My Mood
    Busy
    Looks good!
    R.I.P Grandma! 3-17-2012

  4. #3
    Otaviomorais's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Location
    MG, Brasil
    Posts
    268
    Reputation
    10
    Thanks
    124
    My Mood
    Dead
    Thanks for sharing, a complete list here: https://www.mpgh.net/forum/397-combat...-completo.html
    Just translate the messages

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

    [MPGH]Flengo (02-18-2013)

  6. #4
    arun823's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Los Angeles, California
    Posts
    523
    Reputation
    151
    Thanks
    1,899
    My Mood
    Amused
    Quote Originally Posted by Otaviomorais View Post
    Thanks for sharing, a complete list here: https://www.mpgh.net/forum/397-combat...-completo.html
    Just translate the messages
    LOL, I didn't even know this was released before, well, now people who love to c + p can direct copy my code
    Reversing is the only way to move forward.

  7. #5
    kssiobr's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    Nos braços do Pai Celestial...
    Posts
    726
    Reputation
    10
    Thanks
    333
    My Mood
    Cheeky
    Quote Originally Posted by arun823 View Post
    LOL, I didn't even know this was released before, well, now people who love to c + p can direct copy my code
    It's good you posted ... will even copy kkk
    Nice work, if the guy devote a little time in the programming logic to do many cool things with some functions of both CA PTC classes and how many functions among others.

  8. #6
    Margherita's Avatar
    Join Date
    Jan 2011
    Gender
    female
    Posts
    11,299
    Reputation
    783
    Thanks
    1,287
    My Mood
    Bashful
    Nice if you wrote this
    PM Me | VM Me | Rules

    MARGHERITA

  9. #7
    Saltine's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    493
    Reputation
    104
    Thanks
    629
    Quote Originally Posted by arun823 View Post
    Well, I saw Acea release only one spam message, I want you coders to decide which message to spam, not just "Fuck I dont wanna die" or "Go, Go, Go"

    This should be rather easy to figure out as well.

    Enjoy

    Code:
    if(Main->Variable->iVoiceSpam)
    {
    	Msg.Writeuint8(190);
    	Msg.Writeuint16(0);
    	Msg.Writeuint32(0);
    
    	switch(Main->Variable->iVoiceSpam)
    	{
    	case 1: Msg.Writeuint8(0); break;
    	case 2: Msg.Writeuint8(1); break;
    	case 3: Msg.Writeuint8(2); break;
    	}
    
    	switch(Main->Variable->iVoiceMessage)
    	{
    	case 0:	Msg.Writeuint8(0); break;
    	case 1:	Msg.Writeuint8(1); break;
    	case 2:	Msg.Writeuint8(2); break;				
    	case 3:	Msg.Writeuint8(3); break;
    	case 4:	Msg.Writeuint8(4); break;
    	case 5:	Msg.Writeuint8(5); break;
    	case 6:	Msg.Writeuint8(6); break;
    	case 7:	Msg.Writeuint8(7); break;			
    	case 8: Msg.Writeuint8(8); break;
    	}
    pSendToServer(Msg.Read(), MESSAGE_GUARANTEED);
    }
    Much more concise:
    Code:
    if(Main->Variable->iVoiceSpam)
    {
    	Msg.Writeuint8(190);
    	Msg.Writeuint16(0);
    	Msg.Writeuint32(0);
    	Msg.Writeuint8(Main->Variable->iVoiceSpam-1);			
    	Msg.Writeuint8(Main->Variable->iVoiceMessage);
    	pSendToServer(Msg.Read(), MESSAGE_GUARANTEED);
    }

    Oh no! Vortex is gay!

  10. The Following 3 Users Say Thank You to Saltine For This Useful Post:

    Acea (02-19-2013),arun823 (02-18-2013),[MPGH]Flengo (02-18-2013)

  11. #8
    arun823's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Los Angeles, California
    Posts
    523
    Reputation
    151
    Thanks
    1,899
    My Mood
    Amused
    Quote Originally Posted by Saltine View Post

    Much more concise:
    Code:
    if(Main->Variable->iVoiceSpam)
    {
    	Msg.Writeuint8(190);
    	Msg.Writeuint16(0);
    	Msg.Writeuint32(0);
    	Msg.Writeuint8(Main->Variable->iVoiceSpam-1);			
    	Msg.Writeuint8(Main->Variable->iVoiceMessage);
    	pSendToServer(Msg.Read(), MESSAGE_GUARANTEED);
    }
    Wow, never thought of it that way, thanks for that.
    Reversing is the only way to move forward.

  12. #9
    R4v0r's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    London
    Posts
    234
    Reputation
    11
    Thanks
    142
    My Mood
    Amazed
    Nice work

  13. #10
    RobinC's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Mpgh.exe
    Posts
    1,768
    Reputation
    69
    Thanks
    3,697
    My Mood
    Aggressive
    Thanx, Hope nobody will leech this .

Similar Threads

  1. [Patched] Demtrios 1.3 Esp's, Telekil,l NPC Opk, AntiKick, ForceVoteKick Voice Spam ...
    By demtrios in forum Combat Arms Hacks & Cheats
    Replies: 21
    Last Post: 10-27-2012, 07:21 AM
  2. [Help Request] Multi-Join Spam bots
    By undeRq in forum Minecraft Help
    Replies: 6
    Last Post: 07-20-2012, 02:21 AM
  3. [Patched] TokolocoSK v1.5 - Instant Respawn + Voice Spam and More
    By TokolocoSK in forum Combat Arms Hacks & Cheats
    Replies: 75
    Last Post: 05-12-2012, 05:26 AM
  4. [Release] Voice Spam
    By baraozin in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 4
    Last Post: 03-17-2012, 03:46 AM
  5. [Release] killer66143's Multi Tool! (spam bot,quicklinks and file cleaner!)
    By Dreamer in forum Combat Arms Hacks & Cheats
    Replies: 9
    Last Post: 10-17-2009, 01:09 PM