ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!
Home
Upgrade
Credits
Help
Search
Awards
Achievements
 1014

GTA XblxPhantoms All Client Info Leaked

by Darkdos04 - 10-20-2019 - 09:30 PM
#1
void All_ClientInfo() {
int index = 0;
GRAPHICS::DRAW_RECT(XValue - 0.180f, 0.305f, 0.155f, 0.425f, 0, 0, 0, 150);//Main Rect
DRAW_SPRITE("commonmenu", "interaction_bgd", XValue - 0.180f, 0.110f, 0.155f, 0.040f, 0.0f, BannerRect.R, BannerRect.G, BannerRect.B, BannerRect.A);//Title Bar
drawText("All Client Info", 1, XValue - 0.180f, 0.095f, 0.50f, 0.50f, 255, 255, 255, 255, 1);
for (int i = 0; i < 18; i++) {
if (NETWORK::NETWORK_IS_PLAYER_CONNECTED(i)) {
char* AllInfo = new char[120];
strcpy(AllInfo, PLAYER::GET_PLAYER_NAME(i));
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) > 50) {
strcat(AllInfo, " ~r~[M]");
}
else {
strcat(AllInfo, " ~g~[N]");
}
if (PED::IS_PED_IN_ANY_VEHICLE(PLAYER::GET_PLAYER_PED(i), 1)) {
if (VEHICLE::IS_THIS_MODEL_A_CAR(ENTITY::GET_ENTITY_MODEL(PED::GET_VEHICLE_PED_IS_IN(PLAYER::GET_PLAYER_PED(i), 0)))) {
DRAW_SPRITE("mpcarhud", "transport_car_icon", XValue - 0.120f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
else if (VEHICLE::IS_THIS_MODEL_A_BIKE(ENTITY::GET_ENTITY_MODEL(PED::GET_VEHICLE_PED_IS_IN(PLAYER::GET_PLAYER_PED(i), 0)))) {
DRAW_SPRITE("mpcarhud", "transport_bike_icon", XValue - 0.120f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
else if (VEHICLE::IS_THIS_MODEL_A_BICYCLE(ENTITY::GET_ENTITY_MODEL(PED::GET_VEHICLE_PED_IS_IN(PLAYER::GET_PLAYER_PED(i), 0)))) {
DRAW_SPRITE("mpcarhud", "transport_bicycle_icon", XValue - 0.120f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
else if (VEHICLE::IS_THIS_MODEL_A_PLANE(ENTITY::GET_ENTITY_MODEL(PED::GET_VEHICLE_PED_IS_IN(PLAYER::GET_PLAYER_PED(i), 0)))) {
DRAW_SPRITE("mpcarhud", "transport_plane_icon", XValue - 0.120f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
else if (VEHICLE::IS_THIS_MODEL_A_HELI(ENTITY::GET_ENTITY_MODEL(PED::GET_VEHICLE_PED_IS_IN(PLAYER::GET_PLAYER_PED(i), 0)))) {
DRAW_SPRITE("mpcarhud", "transport_heli_icon", XValue - 0.120f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
else if (VEHICLE::IS_THIS_MODEL_A_BOAT(ENTITY::GET_ENTITY_MODEL(PED::GET_VEHICLE_PED_IS_IN(PLAYER::GET_PLAYER_PED(i), 0)))) {
DRAW_SPRITE("mpcarhud", "transport_boat_icon", XValue - 0.120f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
}
if (NETWORK::NETWORK_PLAYER_HAS_HEADSET(i) && NETWORK::NETWORK_IS_PLAYER_TALKING(i)) {
DRAW_SPRITE("mpleaderboard", "leaderboard_audio_3", XValue - 0.143f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
else if (NETWORK::NETWORK_PLAYER_HAS_HEADSET(i) && !NETWORK::NETWORK_IS_PLAYER_TALKING(i)) {
DRAW_SPRITE("mpleaderboard", "leaderboard_audio_inactive", XValue - 0.143f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
else {
DRAW_SPRITE("mpleaderboard", "leaderboard_audio_mute", XValue - 0.143f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
drawText(AllInfo, 0, XValue - 0.255f, 0.130f + (index * 0.020), 0.45f, 0.35f, 255, 255, 255, 255, 0);
index++;
delete[] AllInfo;
}
}
}
This account is currently banned
Ban reason: Leeching and Spamming is not allowed, please read the forum Rules upon your return.
(Spamming weird links in here)
#2
(10-20-2019 - 09:30 PM)Darkdos04 Wrote: void All_ClientInfo() {
int index = 0;
GRAPHICS::DRAW_RECT(XValue - 0.180f, 0.305f, 0.155f, 0.425f, 0, 0, 0, 150);//Main Rect
DRAW_SPRITE("commonmenu", "interaction_bgd", XValue - 0.180f, 0.110f, 0.155f, 0.040f, 0.0f, BannerRect.R, BannerRect.G, BannerRect.B, BannerRect.A);//Title Bar
drawText("All Client Info", 1, XValue - 0.180f, 0.095f, 0.50f, 0.50f, 255, 255, 255, 255, 1);
for (int i = 0; i < 18; i++) {
if (NETWORK::NETWORK_IS_PLAYER_CONNECTED(i)) {
char* AllInfo = new char[120];
strcpy(AllInfo, PLAYER::GET_PLAYER_NAME(i));
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) > 50) {
strcat(AllInfo, " ~r~[M]");
}
else {
strcat(AllInfo, " ~g~[N]");
}
if (PED::IS_PED_IN_ANY_VEHICLE(PLAYER::GET_PLAYER_PED(i), 1)) {
if (VEHICLE::IS_THIS_MODEL_A_CAR(ENTITY::GET_ENTITY_MODEL(PED::GET_VEHICLE_PED_IS_IN(PLAYER::GET_PLAYER_PED(i), 0)))) {
DRAW_SPRITE("mpcarhud", "transport_car_icon", XValue - 0.120f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
else if (VEHICLE::IS_THIS_MODEL_A_BIKE(ENTITY::GET_ENTITY_MODEL(PED::GET_VEHICLE_PED_IS_IN(PLAYER::GET_PLAYER_PED(i), 0)))) {
DRAW_SPRITE("mpcarhud", "transport_bike_icon", XValue - 0.120f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
else if (VEHICLE::IS_THIS_MODEL_A_BICYCLE(ENTITY::GET_ENTITY_MODEL(PED::GET_VEHICLE_PED_IS_IN(PLAYER::GET_PLAYER_PED(i), 0)))) {
DRAW_SPRITE("mpcarhud", "transport_bicycle_icon", XValue - 0.120f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
else if (VEHICLE::IS_THIS_MODEL_A_PLANE(ENTITY::GET_ENTITY_MODEL(PED::GET_VEHICLE_PED_IS_IN(PLAYER::GET_PLAYER_PED(i), 0)))) {
DRAW_SPRITE("mpcarhud", "transport_plane_icon", XValue - 0.120f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
else if (VEHICLE::IS_THIS_MODEL_A_HELI(ENTITY::GET_ENTITY_MODEL(PED::GET_VEHICLE_PED_IS_IN(PLAYER::GET_PLAYER_PED(i), 0)))) {
DRAW_SPRITE("mpcarhud", "transport_heli_icon", XValue - 0.120f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
else if (VEHICLE::IS_THIS_MODEL_A_BOAT(ENTITY::GET_ENTITY_MODEL(PED::GET_VEHICLE_PED_IS_IN(PLAYER::GET_PLAYER_PED(i), 0)))) {
DRAW_SPRITE("mpcarhud", "transport_boat_icon", XValue - 0.120f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
}
if (NETWORK::NETWORK_PLAYER_HAS_HEADSET(i) && NETWORK::NETWORK_IS_PLAYER_TALKING(i)) {
DRAW_SPRITE("mpleaderboard", "leaderboard_audio_3", XValue - 0.143f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
else if (NETWORK::NETWORK_PLAYER_HAS_HEADSET(i) && !NETWORK::NETWORK_IS_PLAYER_TALKING(i)) {
DRAW_SPRITE("mpleaderboard", "leaderboard_audio_inactive", XValue - 0.143f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
else {
DRAW_SPRITE("mpleaderboard", "leaderboard_audio_mute", XValue - 0.143f, 0.143f + (index * 0.020), 0.030f, 0.040f, 0.0f, 255, 255, 255, 255);
}
drawText(AllInfo, 0, XValue - 0.255f, 0.130f + (index * 0.020), 0.45f, 0.35f, 255, 255, 255, 255, 0);
index++;
delete[] AllInfo;
}
}
}
Intersting

Users browsing: 1 Guest(s)