Пример #1
0
        private void BUTTON_Ragdoll_Click(object sender, EventArgs e)
        {
            if (GTA5Process.Get_Ragdoll())
            {
                BUTTON_Ragdoll.BackgroundImage = Properties.Resources.switch_off;
                GTA5Process.Set_Ragdoll(false);

                return;
            }

            BUTTON_Ragdoll.BackgroundImage = Properties.Resources.switch_on;
            GTA5Process.Set_Ragdoll(true);
        }