Hello, i try to do something here
if text contains \x then do something and skip text "\x"
here is code
PHP Code:
for (y = 0; y < 127; y++)
{
if ( !m[y] )
break
if( d )
{
d = 0
continue
}
if ( m[y] == '\')
{
d = 1
c = str_to_num(m[y + 1])
print( i, "color %d - m: %s", c, m[y + 1] )
continue
}
}
code run in loop, it check m[128] string variable the problem is that this fails somehow
sometime it crab a wrong thing, m[23] == '\' , m[24] == '1' , m[25] == '3'
and i will got 3 with this code, how is this possible?