Код:
if(dialogid == 1)
{
if(response == 1)
{
new w[128];
}
if(response == 0)
{
}
}
Variables that you create are ONLY available in the block they were created in (marked in green). It it not known in any other blocks (marked in red). This is called the 'scope' of a variable.