Simple little code that Not many seem to be doing.
Here you go boys & gals.
Here you go boys & gals.
MD: Trident
the best FREE GTAV mod menu
(04-19-2020 - 02:44 PM)FeetForFree Wrote:License plate text moves. Makes it easier to put long messages on your License.(04-19-2020 - 01:47 AM)XBLxPhantom Wrote: Simple little code that Not many seem to be doing.Animate License??
Here you go boys & gals.
(04-19-2020 - 11:12 AM)Cayman_-Modz Wrote: very good bro... you know how to make the information reader to see if the player is a man or a woman?? pleasePretty easy to do.... I'll post my detection method for it in a bit.
(04-19-2020 - 10:51 PM)XBLxPhantom Wrote:(04-19-2020 - 02:44 PM)FeetForFree Wrote:License plate text moves. Makes it easier to put long messages on your License.(04-19-2020 - 01:47 AM)XBLxPhantom Wrote: Simple little code that Not many seem to be doing.Animate License??
Here you go boys & gals.
(04-19-2020 - 11:12 AM)Cayman_-Modz Wrote: very good bro... you know how to make the information reader to see if the player is a man or a woman?? pleasePretty easy to do.... I'll post my detection method for it in a bit.
sprintf(MALE, "%s", PED::IS_PED_MALE(selectedPlayer) ? "~g~Man" : "~r~Woman");
if (PED::IS_PED_MALE(selectedPlayer) == true) {
sprintf(MALE, "~r~Woman");
}
else { sprintf(MALE, "~g~Man"); }