class MyUSGame extends actor
placeable;
var int i;
function PostBeginPlay()
{
`log("i must go to here");
goto ifsentence;
`log("i will not go here");
ifsentence:
if(i==1)
{
`log("i'm here.........................!");
return;
}
`log("i'm not here.----------------------");
}
defaultproperties
{
i=1;
}