this is what i have and i hope u can make it so that every 5 seconds it will remove the first letter cause im limited to a certain amount of text in status text so i want it to be nice and smooth like its scrolling if needed u can remove 5 at a time what ever u prefer
Code:
new iLen = strlen( szString );
if(iLen > 60)
while(iLen != i+1 )
{
if( gametime-LastMessage[id] > 0.5 )
{
if( iLen - 2 != i )
{
format( szStringer, 256, "%s" , szString[i])
Create_StatusText( id, 0, szStringer);
}
else
Create_StatusText( id, 0, szString);
LastMessage[id] = gametime;
i++
}
}
else
Create_StatusText( id, 0, szString);
didnt do any changes yet hoping u can do it for me thanks alot