Jump to content

source Secretive v1.3 Source


0X37BN566
 Share

Recommended Posts

On 2/5/2021 at 1:07 AM, 0X37BN566 said:

The source in the previous thread didn't work for many , so here is a fixed source of Secretive v1.3 aka kitsune.squad .

License Check is Removed , so no more crashes 🙂 🙂 🙂 🙂

  Secretive_Aka_Kitsune.zip 120.03 MB · 213 downloads

1608918624428.png

I'm missing the d3dx9.lib and I'm not sure where to put it. I'm guessing it's some directx files?

  • Like 1
Link to comment
Share on other sites

1 hour ago, vide1988 said:

does anyone have the fonts of legendware?

you can find them at hooks.hpp - line 150  

11 hours ago, WattagePot12 said:

I'm missing the d3dx9.lib and I'm not sure where to put it. I'm guessing it's some directx files?

↓↓↓↓↓↓↓↓↓↓↓↓

 

On 2/7/2021 at 2:58 PM, RussianAirplane said:

uh, simple google "d3dx9.h not found" would give u the answer..

1) Go to your Project Properities
image.png.1f38d288f0f22bfcd3aee1291deb6ed3.png

2) Go to VC++ Directories
image.png.cf76e6b8ed7a097db9c5eba499ae2ce1.png

3) DoubleClick on Include Directories and paste: $(DXSDK_DIR)Include
4) DoubleClick on Library Directories and paste: $(DXSDK_DIR)Lib\x86  (if your project is 64-bit, doubt that, paste this: $(DXSDK_DIR)Lib\x64)
5) GG EZ PROFIT €€

edit: just realized, some projects may contain other includes as for other files, you can just click this icon:image.png.38768d414d6c1db44095764cd1cdd502.png
Then edit and then u just add new path, paste the same thing in as above..

5 hours ago, vide1988 said:

how can i change the red color?

use styleditor

  • Like 7
Link to comment
Share on other sites

27 minutes ago, vide1988 said:

when a person does not know it is better to ask before doing shit

If you don't know then don't do anything lmfao you need to learn something first, just constantly asking what to do dosen't help you at all

Link to comment
Share on other sites

14 minutes ago, vide1988 said:

I ask for help and this is what I get, thank you 

and nobody said I didn't know anything

i mean he isn't wrong by saying you need to learn cpp for it to be more easy but let's be honest  who tf have time to learn the whole https://learncpp.com site just to do this n imo better look at sources and use your brain to understand by ofc that is my opinion 

  • Like 5
Link to comment
Share on other sites

20 hours ago, raidex said:

where do I change the menu name?
ImGui::PushFont(c_menu::get().futura_large); ImGui::TextColored(ImColor(255, 255, 255), "Change me!"); ImGui::PopFont();

menu.cpp - line: 951

 

if you want to change the logo:

ImGui::Image(logotype, ImVec2(50.0f, 45.0f)); 

->   

BYTE logokitsune[33570] = {
	//your image byte arrays goes here
};

^ hooks.cpp - line: 37-39 (you need to convert your image into byte arrays)

  • Like 2
  • Thanks 1
Link to comment
Share on other sites

2 hours ago, raidex said:

How do I remove skin changer.
Thank you for your help

remove everything in

menu.cpp - line: 2123

if (Active_Tab == 4 && Active_Changer_Tab == 1) //Changers | Inventory

all the way into: 

Quote

ImGui::EndChild();
                            //tab_end();

at 2446-2447

  • Like 2
  • Thanks 1
  • Haha 2
Link to comment
Share on other sites

56 minutes ago, raidex said:

 

Sem título.png

you wanna remove completely the skinchanger tab?

if so just do this: 

ImGui::SetCursorPos(ImVec2{ 525, 0 });
				if (ImGui::Tab("4", "Skins", "Model", ImVec2{ 85, 50 }, Active_Tab == 4 ? true : false))
					Active_Tab = 4;

just replace those "Active_Tab == 4" with misc tab number (5)

after that remove 

ImGui::SetCursorPos(ImVec2{ 620, 0 });
				if (ImGui::Tab("5", "Misc", "Other", ImVec2{ 85, 50 }, Active_Tab == 5 ? true : false))
					Active_Tab = 5;

 

then head out into line: 1056 and change active_tab 4 into this: 

else if (Active_Tab == 4) // Changers | ×ĺíäćĺđű (Číâĺíňŕđü, ďđîôčëü)
			{
				Style->ChildRounding = 5;
				ImGui::SetCursorPos(ImVec2{ 10, 60 });
				ImGui::BeginChild("##Main", ImVec2{ 160, 125 }, false, NoMove);
				{
					ImGui::SetCursorPos(ImVec2{ 5, 5 });
					if (ImGui::SubTab("Main", ImVec2(150, 25), Active_Misc_Tab == 1 ? true : false))
						Active_Misc_Tab = 1;

					ImGui::SetCursorPos(ImVec2{ 5, 35 });
					if (ImGui::SubTab("Additives", ImVec2(150, 25), Active_Misc_Tab == 2 ? true : false))
						Active_Misc_Tab = 2;

					ImGui::SetCursorPos(ImVec2{ 5, 65 });
					if (ImGui::SubTab("Configs", ImVec2(150, 25), Active_Misc_Tab == 3 ? true : false))
						Active_Misc_Tab = 3;

					ImGui::SetCursorPos(ImVec2{ 5, 95 });
					if (ImGui::SubTab("Lua", ImVec2(150, 25), Active_Misc_Tab == 4 ? true : false))
						Active_Misc_Tab = 4;
				}
				ImGui::EndChild();

after that just remove active_tab 5 because you already have misc features in tab 4

 

if those did not work try this: 

at line 900 & 901 

replace 901 with 900 

like this


	if (Active_Tab != 1) Active_Rage_Tab = 1;
	if (Active_Tab != 2) Active_Legit_Tab = 1;
	if (Active_Tab != 3) Active_Visuals_Tab = 1;
	if (Active_Tab != 4) Active_Misc_Tab = 1;
	

 

  • Like 1
  • Thanks 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...