Release Project Insomnia Recovery(Source)

Venox

Moderator
Messages
93
Reaction score
73
Points
808
  • Hey CCM nice to see you in the gta Section i talked today to @CabCon
  • we spoked over The Activity in the Gta Section we need also more Post here !!​
  • i will do the Start (Posting my Old Source) i created this since 11 Months .. yes its outdated but you can still learn from it !!​


Video(i changed only the Design to orginal 2much because im not want to share my Design!!)
How its Looks Inside
Code:
//Menu base created by 2much4u
//Menu Created by VenoxCoding pls Not leech this
//Thread Only Allowed On Cabconmodding.com
//youtube/venoxCoding 
//Project Created 13.1.2016
#pragma endregion
#pragma region Self Options
    case Self_Options:
        addTitle("Self Options");
        addBoolOption("Godmode", PLAYER::GET_PLAYER_INVINCIBLE(PLAYER::PLAYER_ID()));
        addBoolOption("Invisibility", !ENTITY::IS_ENTITY_VISIBLE(PLAYER::PLAYER_PED_ID()));
        switch (getOption())
        {
        case 1: PLAYER::SET_PLAYER_INVINCIBLE(PLAYER::PLAYER_ID(), !PLAYER::GET_PLAYER_INVINCIBLE(PLAYER::PLAYER_ID())); break;
        case 2: ENTITY::SET_ENTITY_VISIBLE(PLAYER::PLAYER_PED_ID(), !ENTITY::IS_ENTITY_VISIBLE(PLAYER::PLAYER_PED_ID())); break;
        }
        break;
#pragma endregion

Download
You do not have permission to view link Log in or register now.
 
Top