Hallo,
I need help with getting a value of the variable "S"Please help fast I need it tomorrow
Thanks
int S;
//some code
if(NachLinks==false && NachOben==false && NachUnten==false && NachRechts==false )
{
int N;
N=Greenfoot.getRandomNumber(4);
if(N==0)
{
S=1; // I need that Value
}
if(N==1)
{
S=2;
}
if(N==2)
{
S=3;
}
if(N==3)
{
S=4;
}
}
if(NachOben==false && S==3 // But here the variable is not initialized (error))
{
setRotation(90);
move(-1);
}

