strlen trouble. help please.
#1

resolved.
Reply
#2

Edited - Resolved
Reply
#3

Explain what you want to do.
Reply
#4

You cannot have dynamic array sizes in pawn.
pawn Код:
stock scramble(string[])
{    
      new ssize = strlen(string);    
      new used[128];
Edit the size by yourself.
Reply
#5

pawn Код:
stock scramble(const string[])
{
    new ssize = strlen(string);
    new used[ssize];
}
try that
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)