View Single Post
  #5  
Old 10-17-2003, 10:23 AM
Scorpious2k's Avatar
Scorpious2k
Demi-God
 
Join Date: Mar 2003
Location: USA
Posts: 1,067
Default Re: Quest Problems (Another Items Event Problem....)

Quote:
Originally Posted by morgklor
if ($item0 == "1001")
should be:

Code:
if ($item1 == "1001")
$item0 isn't valid

Quote:
if ($itemcount(1001) == 1)
should be

Code:
if ($itemcount("1001") == 1)
almost all parameters have to be in quotes
__________________
Maybe I should try making one of these servers...
Reply With Quote