Résolu Code c# ToggleSwitch (ON/OFF)

Statut
N'est pas ouverte pour d'autres réponses.

Iktus

Premium
Inscription
21 Octobre 2013
Messages
1 675
Réactions
374
Points
12 981
RGCoins
50
Salut :RG:

J'aimerai savoir qui aurait le code c# du ToggleSwitch (ON/OFF) pour le non host s'il vous plait, je ne me rappel plus D:

Merci!
 
Salut,

J'ai déplacé https://reality-gaming.fr/attachments/deplacement-png.20319/ ta discussion en section Résolu https://reality-gaming.fr/attachments/verifier-png.20313/

Bonne soirée,
RaFaLe'
 
Ison ou Isoff
if (this.toggleSwitch1.get_IsOn())
{
PS3.SetMemory(0xEF68C, new byte[] { 0x2C, 0x03, 0x00, 0x01 });
}
else
{
PS3.SetMemory(0xEF68C, new byte[] { 0x2C, 0x03, 0x00, 0 });
}

o.O
 
if (this.toggleSwitch1.get_IsOn())
{
PS3.SetMemory(0xEF68C, new byte[] { 0x2C, 0x03, 0x00, 0x01 });
}
else
{
PS3.SetMemory(0xEF68C, new byte[] { 0x2C, 0x03, 0x00, 0 });
}

o.O
Code:
if (this.toggleSwitch1.IsOn)
{
PS3.SetMemory(0xEF68C, new byte[] { 0x2C, 0x03, 0x00, 0x01 });
}
else
{
PS3.SetMemory(0xEF68C, new byte[] { 0x2C, 0x03, 0x00, 0 });
}
 
Statut
N'est pas ouverte pour d'autres réponses.
Retour
Haut