(Updated #1)How To ...
 
Notifications
Clear all

(Updated #1)How To Write Tunables in C#/C++ (including some 1.26 indexes and Tunable Pointer)


KranK
Posts: 336
Topic starter
(@KranK)
Reputable Member
Joined: 9 years ago

So i have noticed lots of people since first release of Tunables by Tustin not fully understand how things works :p

ill be showing you how write them in C++/C# .

[HIDE]
void SetTunable(int index, int value)
{
int TunablesPointer= 0x1E70374; // 1.26 TunablesPointer
int TunablesTable = *(int*)TunablesPointer + 4; // Tunable Pointer Plus 4 To bring to start of Tunable Table
int TunableAddress = TunablesTable + (index * 4); // Tunable Table + (Tunable Index Multiply by 4 to get the correct tunable location to set to )
*(int*)TunableAddress = value; // Write Value to current tunable index adress
}

public static void SetTunable(int index, int value)
{
int TunablesPointer = PS3.Extension.ReadInt32(0x1E70374);
int TunablesTable = TunablesPointer + 4;
int TunableAddress = TunablesTable + (index * 4);
PS3.Extension.WriteInt32((uint)TunableAddress, value);
}

enum Tunables //1.26
{
TURN_SNOW_ON_OFF = 4715,
CARMOD_SHOP_MULTIPLIERqe = 59,
CLOTHES_SHOP_MULTIPLIER = 60,
HAIRDO_SHOP_MULTIPLIER = 61,
TATTOO_SHOP_MULTIPLIER = 62,
WEAPONS_SHOP_MULTIPLIER = 63,
CARS_WEBSITE_MULTIPLIER = 65,
PLANES_WEBSITE_MULTIPLIER = 66,
HELIS_WEBSITE_MULTIPLIER = 67,
BOATS_WEBSITE_MULTIPLIER = 68,
BIKES_WEBSITE_MULTIPLIER = 69,
IDLEKICK_WARNING1 = 73,
IDLEKICK_WARNING2 = 74,
IDLEKICK_WARNING3 = 75,
};

bool MakeSnow;
void MakeItSnow()
{
if (!MakeSnow)
{
SetTunable(TURN_SNOW_ON_OFF, 1); // Snow ON
MakeSnow = true;
}
else
{
SetTunable(TURN_SNOW_ON_OFF, 0); // Snow OFF
MakeSnow = false;
}
}

[/HIDE]

Thanks To Absolute Zero for converting SetTunable to C# for me 🙂

Credits:
Tustin for Virgin Tunables Modding solution 😀
Xelahot for Updating the indexes to 1.26 for me 🙂

Reply
Name of the Video Game, and any other Tags
4 Replies
Cain532
Posts: 1280
(@cain532)
Noble Member
Joined: 10 years ago

Very cool stuff 😀 THanks Krank!

Reply
KranK
Posts: 336
Topic starter
(@KranK)
Reputable Member
Joined: 9 years ago

Very cool stuff 😀 THanks Krank!

thank you Mr. Cain532

Reply
Posts: 0
 Wamm
(@Wamm)
New Member
Joined: 9 years ago

Thank you krank (y)

All tunable indice here (tustin pastebin)

[MEDIA=pastebin]aLzTdr0Y[/MEDIA]
Reply
LEGACYY
Posts: 2350
(@legacyy)
Noble Member
Joined: 9 years ago

So i have noticed lots of people since first release of Tunables by Tustin not fully understand how things works :p

ill be showing you how write them in C++ for now, will be adding C# later

Hidden content cannot be quoted.

Will be adding more functions soon including C# source

Credits:
Tustin for Virgin Tunables Modding solution 😀
Xelahot for Updating the indexes to 1.26 for me 🙂

Legend always releasing that fire (y)

Reply