22.03.2012, 12:39
The problem is here:
First, you can't use multiple 'if's on one line. Second, you're asking if the player is called 'jimis', but also 'name2' and 'name3' at the same time. Obviously you can't have three names at the same time. 
This should be good:
I also changed '== 0' to just a exclamation mark ('!') before the function, which both just give the same effect, but it makes the line a bit shorter.
Код:
if(strcmp(pname,"jimis",true) == 0) && if(strcmp(pname,"name2",true) == 0) && if(strcmp(pname,"name3",true)== 0 )

This should be good:
Код:
if(!strcmp(pname,"jimis",true) || !strcmp(pname,"name2",true) || !strcmp(pname,"name3",true))
