if (scroll == 0)
{
int caseSwitch = 0;
switch (caseSwitch)
{
case 0:
RPC.iPrintln(client, "FOV 60");
break;
case 1:
RPC.iPrintln(client, "FOV 70");
break;
case 2:
RPC.iPrintln(client, "FOV 80");
break;
}
}
int scroll = 0, caseSwitch = 0;
public void method()
{
if (scroll.Equals(0))
switch(caseSwitch)
{
case 0: RPC.iPrintln(client, "FOV 60"); break;
case 1: RPC.iPrintln(client, "FOV 70"); break;
case 2: RPC.iPrintln(client, "FOV 80"); break;
default: ; break;
}
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.