Jump to content
  • 0

pomoc errory


Guest jirbate

Dotaz

no jako lamec by byl rad kdyby mi nekdo pomohl stimhle

C:\DOCUME~1\Martin\Plocha\pawno\chigago.pwn(1385) : error 029: invalid expression, assumed zero

C:\DOCUME~1\Martin\Plocha\pawno\chigago.pwn(1385) : error 029: invalid expression, assumed zero

C:\DOCUME~1\Martin\Plocha\pawno\chigago.pwn(1385) : warning 215: expression has no effect

C:\DOCUME~1\Martin\Plocha\pawno\chigago.pwn(1385) : error 001: expected token: ";", but found ")"

C:\DOCUME~1\Martin\Plocha\pawno\chigago.pwn(1385) : fatal error 107: too many error messages on one line

radek

strtok(const string[], &index)

Link to comment
Share on other sites

13 odpovědí na tuto otázku

Recommended Posts

  • 0

strtok(const string[], &index)
{

new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
	index++;
}

new offset = index;
new result[20];

while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
	result[index - offset] = string[index];
	index++;
}
result[index - offset] = EOS;
return 1;
}

takle ti to stačí

Link to comment
Share on other sites

  • 0
asi težko protože ja už s pawnem končim dodělam doopravim a konec možna tak zaarok se k nemu vratim

Omg pojd na ičko a koukneme se na to přes TeamViewer a Nesmpamuj ;)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...