Results 1 to 8 of 8
  1. #1
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh

    setting up Send to Server in a menu

    i forget how to do it. It's not for CA, it's for a team of people i'm with's FPS game TPS that's on the lithtech engine and i need to know what to patch in the game's code.

    it's been awhile and i can't remember XD

    commando: You're probably the best non-coder coder I know LOL


  2. #2
    OpKilts's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    The Interwebs
    Posts
    94
    Reputation
    57
    Thanks
    425
    My Mood
    Aggressive
    Tip: int TSendtoServer = 1;
    ULTIMATE GAY'S LIST
    • Matypatty
    • DisOwned


    Error: Max Thanks Reached


    TASK'S
    1. (Complete)Make Simple Menu For Combat Arms NA
    2. (Complete) Reach 50 Post's
    3. (In Progress)Troll Nerdy Kids
    4. (Complete)Get a job at KFC

  3. #3
    pDevice's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    d3d9.h
    Posts
    1,306
    Reputation
    15
    Thanks
    420
    My Mood
    Stressed
    did not quite understand ...



  4. #4
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    o.0
    What do you wanna do? I dont get you...
    Do you wanna hook S2S or do you wanna set it up in your own game to use it there?
    I wouldnt use that engine at all because your game will end like CA xD

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

  5. The Following User Says Thank You to Ch40zz-C0d3r For This Useful Post:

    [MPGH]Flengo (11-14-2013)

  6. #5
    Acea's Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Home of the elks
    Posts
    346
    Reputation
    80
    Thanks
    2,216
    My Mood
    Stressed
    well @supercarz1991 I have quite a bit of respect for you in the CA community so i'll help you with both ways of hooking and just using it for cheats like voice spammer etc..

    Let's start with the easy one:

    Code:
    Not sure if these are up to date or not but here's the address's these may or may not be a patch old.
    
    #define S2S					 0x47AF20
    #define LTClient  			 0x379498F4
    Code:
    I know you know your stuff so I won't blab with details just grab the codes below and place them accordingly
    
    CLTClient* g_LTClient;
    CCommonLT* g_CommonLT;
    
    unsigned int ValidPointer( void* p )
    { 
    	return ( p != 0 ) ? 1 : 0;
    }
    
    if(vspammer)
    	{
    		pSendToServer = (tSendToServer)ADDR_S2SE;
    		g_LTClient = *(CLTClient**)ADDR_LTCLIENT;
    		g_CommonLT = g_LTClient->Common();
    		if(ValidPointer(g_LTClient))
    		{
    			CAutoMessage Msg;
    			Msg.Writeuint8( 190 );
    			Msg.Writeuint16( 0 );
    			Msg.Writeuint32( 0 );
    			Msg.Writeuint8( 2 );
    			Msg.Writeuint8( 8 );
    			pSendToServer(Msg.Read(), MESSAGE_GUARANTEED);
    		}
    	}
    
    #include "message.h"
    
    If you need the SDK let me know
    And as for hooking s2s i'll just give you a base to pick apart, don't worry though it's noob proof. It only demos the s2s hacks but everything you need to hook s2s for ex: logging or unlim ammo is there. Just update some things and throw in a detour and hook



    Edit: I just re read your post, this probably won't help but it's here now anyways. My bad. :P
    If you need help working with lithtech lemme know I may be of some use.
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Acea; 11-12-2013 at 05:38 AM.

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

    pDevice (11-12-2013),supercarz1991 (11-12-2013)

  8. #6
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    @Acea

    that was extremely helpful in helping me understand the issues i'm having. The only other issue i seem to have is the physical SDK itself

    i keep getting errors like this

    Code:
    1>e:\users\boxxi\documents\visual studio 2010\projects\d3d\hackingscene public base\razor1337 base\ltclient.h(5) : fatal error C1083: Cannot open include file: 'SDK\iltmessage.h': No such file or directory
    and that's obviously an existing file. I checked. it's included in my project

    the other issue is my SDK doesn't even have this file... #include "ltlibraryloader.h"
    i've tried like 5-6 different sdk's. 2 of which i actually have used in the past.

    the only other issue is this

    Code:
    1>e:\users\boxxi\documents\visual studio 2010\projects\d3d\hackingscene public base\razor1337 base\crasher\ltstrutils.h(110) : warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    lots of those LOL i might just wait until mat's ready to take this step toward the anti-cheat because i have bad luck with this stuff.

    commando: You're probably the best non-coder coder I know LOL


  9. #7
    Acea's Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Home of the elks
    Posts
    346
    Reputation
    80
    Thanks
    2,216
    My Mood
    Stressed
    Quote Originally Posted by supercarz1991 View Post
    @Acea

    that was extremely helpful in helping me understand the issues i'm having. The only other issue i seem to have is the physical SDK itself

    i keep getting errors like this

    Code:
    1>e:\users\boxxi\documents\visual studio 2010\projects\d3d\hackingscene public base\razor1337 base\ltclient.h(5) : fatal error C1083: Cannot open include file: 'SDK\iltmessage.h': No such file or directory
    and that's obviously an existing file. I checked. it's included in my project

    the other issue is my SDK doesn't even have this file... #include "ltlibraryloader.h"
    i've tried like 5-6 different sdk's. 2 of which i actually have used in the past.

    the only other issue is this

    Code:
    1>e:\users\boxxi\documents\visual studio 2010\projects\d3d\hackingscene public base\razor1337 base\crasher\ltstrutils.h(110) : warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    lots of those LOL i might just wait until mat's ready to take this step toward the anti-cheat because i have bad luck with this stuff.
    Don't include ltclient.h, it's not generally needed. However if you do need it I can help you fix it, whatever you're trying to do should work fine without it though

    and for the warning message just do:

    Code:
    #pragma warning(disable : 4996)

  10. The Following User Says Thank You to Acea For This Useful Post:

    supercarz1991 (11-12-2013)

  11. #8
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    Quote Originally Posted by Acea View Post
    Don't include ltclient.h, it's not generally needed. However if you do need it I can help you fix it, whatever you're trying to do should work fine without it though

    and for the warning message just do:

    Code:
    #pragma warning(disable : 4996)
    add me on skype if you wanna help. might be fun :P

    it's KaptinBoxxi for my skype username

    commando: You're probably the best non-coder coder I know LOL


Similar Threads

  1. setting up a minecraft server(help needed)(fedora)
    By shadowkiller210 in forum Minecraft Help
    Replies: 2
    Last Post: 06-20-2011, 03:56 PM
  2. Setting up a Teamspeak server
    By Xxxkiller15 in forum Programming Tutorials
    Replies: 1
    Last Post: 05-04-2011, 04:31 AM
  3. [Solved] How to set up a Minecraft Server with Mineshaft
    By Jack in forum Minecraft Help
    Replies: 0
    Last Post: 02-23-2011, 08:05 PM
  4. [Tutorial] Setting up non-steam server list for CSS
    By TrojanMan! in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 6
    Last Post: 12-17-2009, 02:30 PM
  5. Can someone tell me how to set up a craced server for Call of Duty 4 v1.7
    By iwantaps3 in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 9
    Last Post: 09-08-2008, 11:27 PM