WHat is wrong?
#4

Each "||" is a different instance. For example:

pawn Код:
if(cookie == 1 || cookie == 2)
means:

pawn Код:
if(cookie == 1)
//OR
if(cookie == 2)
So what you have is:

pawn Код:
if(classid == 19)
//OR
if(193)
That doesn't make much sense. You have to include a "classid ==" in every instance:

pawn Код:
if(classid == 19 || classid ==  193 || classid == 1 || classid == 22 || classid == 40)
Reply


Messages In This Thread
WHat is wrong? - by Mystique - 25.10.2010, 19:44
Re: WHat is wrong? - by Scripter123 - 25.10.2010, 19:47
Re: WHat is wrong? - by Cameltoe - 25.10.2010, 19:48
Re: WHat is wrong? - by Zezombia - 25.10.2010, 19:48
Re: WHat is wrong? - by Scripter123 - 25.10.2010, 19:49
Re: WHat is wrong? - by Zezombia - 25.10.2010, 19:52
Re: WHat is wrong? - by Mystique - 25.10.2010, 19:55
Re: WHat is wrong? - by Zezombia - 25.10.2010, 19:58
Re: WHat is wrong? - by Mystique - 25.10.2010, 20:00
Re: WHat is wrong? - by Scripter123 - 25.10.2010, 20:02

Forum Jump:


Users browsing this thread: 1 Guest(s)