[Help]How to enable Dev ESP ?

Results 1 to 6 of 6
  1. #1
    Apprentice aledimetap7 is offline
    MemberRank
    Jul 2016 Join Date
    Ban Sa Krachom,Location
    18Posts

    big grin [Help]How to enable Dev ESP ?

    I have a problem for Dev Esp is not work. i'm use CodeX source. And Crate Account not get a Premium. Please Help!!! Sorry for Bad English.


  2. #2
    Play Alpha MMO DouglasPro is offline
    MemberRank
    Nov 2014 Join Date
    //HKEY//RJ_BRLocation
    391Posts

    Re: [Help]How to enable Dev ESP ?

    Search for
    Code:
    if (gUserProfile.ProfileData.isDevAccount && d_show_dev_event_info->GetBool())	{
    		r3dColor clanTagColor;
    		switch (ClanTagColor)
    		{
    		default: clanTagColor = r3dColor::yellow;
    		case 1: clanTagColor = r3dColor24(170,0,0); break;
    		case 2: clanTagColor = r3dColor24(166,120,12); break;
    		case 3: clanTagColor = r3dColor24(16,164,158); break;
    		case 4: clanTagColor = r3dColor24(32,164,20); break;
    		case 5: clanTagColor = r3dColor24(16,78,164); break;
    		case 6: clanTagColor = r3dColor24(150,16,164); break;
    		case 7: clanTagColor = r3dColor24(68,68,68); break;
    		case 8: clanTagColor = r3dColor24(164,164,164); break;
    		}
    
    
    		r3dPoint3D scrCoord;
    		if(r3dProjectToScreen(GetPosition() + r3dPoint3D(0, 1.8f, 0), &scrCoord))
    		{
    			char plrUserName[64]; GetUserName(plrUserName);
    
    
    			if(ClanID!=0)
    				Font_Editor->PrintF(scrCoord.x - 50, scrCoord.y, clanTagColor, "[%s]", ClanTag);
    			
    			Font_Editor->PrintF(scrCoord.x, scrCoord.y, r3dColor::yellow, "%s", plrUserName);
    
    
    			r3dColor health = r3dColor::yellow;
    			if (CurLoadout.Health < 25)
    				health = r3dColor::red;
    			else if (CurLoadout.Health < 50)
    				health = r3dColor::orange; 
    			Font_Editor->PrintF(scrCoord.x, scrCoord.y + 20, health, "%.0f", CurLoadout.Health);
    		}
    	}
    ADD BELLOW
    Code:
    //DouglasPRO:: DEV ESP CustomerID/gamertag for admins	if(!NetworkLocal && gUserProfile.ProfileData.isDevAccount && d_dev_show_player_names->GetBool())
    	{
    		float dist = (gCam - GetPosition()).Length();
    		int a    = int(R3D_MAX(1.0f - (dist / 300.0f), 0.1f)*255.0f);
    		r3dPoint3D scrCoord; //DouglasPRO
    		if(r3dProjectToScreen(GetPosition() + r3dPoint3D(0, 1.8f, 0), &scrCoord))
    		{
    			char plrUserName[64]; GetUserName(plrUserName);
    			if(!d_dev_do_not_show_player_id->GetBool())
    				Font_Editor->PrintF(scrCoord.x, scrCoord.y+12, r3dColor(255,255,255,a), "ID:%d", CustomerID);
    			if(ClanID!=0)
    				Font_Editor->PrintF(scrCoord.x, scrCoord.y,    r3dColor(255,255,255,a), "[%s]%s", ClanTag, plrUserName);
    			else
    				Font_Editor->PrintF(scrCoord.x, scrCoord.y,    r3dColor(255,255,255,a), "%s", plrUserName); //DouglasPRO
    		}
    	}

  3. #3
    Apprentice kikkok2531 is offline
    MemberRank
    Jun 2015 Join Date
    11Posts

    Re: [Help]How to enable Dev ESP ?

    Quote Originally Posted by DouglasPro View Post
    Search for
    Code:
    if (gUserProfile.ProfileData.isDevAccount && d_show_dev_event_info->GetBool())    {
            r3dColor clanTagColor;
            switch (ClanTagColor)
            {
            default: clanTagColor = r3dColor::yellow;
            case 1: clanTagColor = r3dColor24(170,0,0); break;
            case 2: clanTagColor = r3dColor24(166,120,12); break;
            case 3: clanTagColor = r3dColor24(16,164,158); break;
            case 4: clanTagColor = r3dColor24(32,164,20); break;
            case 5: clanTagColor = r3dColor24(16,78,164); break;
            case 6: clanTagColor = r3dColor24(150,16,164); break;
            case 7: clanTagColor = r3dColor24(68,68,68); break;
            case 8: clanTagColor = r3dColor24(164,164,164); break;
            }
    
    
            r3dPoint3D scrCoord;
            if(r3dProjectToScreen(GetPosition() + r3dPoint3D(0, 1.8f, 0), &scrCoord))
            {
                char plrUserName[64]; GetUserName(plrUserName);
    
    
                if(ClanID!=0)
                    Font_Editor->PrintF(scrCoord.x - 50, scrCoord.y, clanTagColor, "[%s]", ClanTag);
                
                Font_Editor->PrintF(scrCoord.x, scrCoord.y, r3dColor::yellow, "%s", plrUserName);
    
    
                r3dColor health = r3dColor::yellow;
                if (CurLoadout.Health < 25)
                    health = r3dColor::red;
                else if (CurLoadout.Health < 50)
                    health = r3dColor::orange; 
                Font_Editor->PrintF(scrCoord.x, scrCoord.y + 20, health, "%.0f", CurLoadout.Health);
            }
        }
    ADD BELLOW
    Code:
    //DouglasPRO:: DEV ESP CustomerID/gamertag for admins    if(!NetworkLocal && gUserProfile.ProfileData.isDevAccount && d_dev_show_player_names->GetBool())
        {
            float dist = (gCam - GetPosition()).Length();
            int a    = int(R3D_MAX(1.0f - (dist / 300.0f), 0.1f)*255.0f);
            r3dPoint3D scrCoord; //DouglasPRO
            if(r3dProjectToScreen(GetPosition() + r3dPoint3D(0, 1.8f, 0), &scrCoord))
            {
                char plrUserName[64]; GetUserName(plrUserName);
                if(!d_dev_do_not_show_player_id->GetBool())
                    Font_Editor->PrintF(scrCoord.x, scrCoord.y+12, r3dColor(255,255,255,a), "ID:%d", CustomerID);
                if(ClanID!=0)
                    Font_Editor->PrintF(scrCoord.x, scrCoord.y,    r3dColor(255,255,255,a), "[%s]%s", ClanTag, plrUserName);
                else
                    Font_Editor->PrintF(scrCoord.x, scrCoord.y,    r3dColor(255,255,255,a), "%s", plrUserName); //DouglasPRO
            }
        }

    what search in file ??? & if file is not have code sory for lang

  4. #4
    Apprentice Rudy is offline
    MemberRank
    Oct 2016 Join Date
    6Posts

    Re: [Help]How to enable Dev ESP ?

    Quote Originally Posted by kikkok2531 View Post
    what search in file ??? & if file is not have code sory for lang
    WarZ.sln

  5. #5
    Account Upgraded | Title Enabled! djbadboys38 is offline
    MemberRank
    Aug 2010 Join Date
    TanzanyaLocation
    1,365Posts

    Re: [Help]How to enable Dev ESP ?

    Quote Originally Posted by kikkok2531 View Post
    what search in file ??? & if file is not have code sory for lang
    Search in WarZ.sln

    if (gUserProfile.ProfileData.isDevAccount && d_show_dev_event_info->GetBool()) {

  6. #6
    Apprentice kikkok2531 is offline
    MemberRank
    Jun 2015 Join Date
    11Posts

    Re: [Help]How to enable Dev ESP ?

    thank



Advertisement