home *** CD-ROM | disk | FTP | other *** search
/ Invenzioni E Inventori 1: Lavoro E Vita Quotidiana / invenzioni-inventori-1.iso / mac / Invenzio / Indart.cst / 00058_Script_58 < prev    next >
Text File  |  1997-10-14  |  1KB  |  38 lines

  1. on controlla_alberi num
  2.   repeat with a = 1 to 48
  3.     set b to the castnum of sprite a
  4.     if b <> 0 then
  5.       if the   casttype of member b =#shape then
  6.         if char 1 of the name of member b= "m" then
  7.           --          puppetsprite a, 1
  8.           if char 2 of the name of member b = "p" then
  9.             set the forecolor of sprite a to 159
  10.             updatestage
  11.           else
  12.             set nome to item 1 of the name of member b
  13.             if char 2 of the name of member b = "i" then
  14.               set tr to trova_cd (nome,num)
  15.               if tr = 0 then
  16.                 set the forecolor of sprite a to 35
  17.                 updatestage
  18.               else
  19.                 set the forecolor of sprite a to 159
  20.                 updatestage
  21.               end if
  22.             else
  23.               if char 2 of the name of member b = "s" then
  24.                 if trova_sottoinv (nome) = 0 then
  25.                   set the forecolor of sprite a to 35
  26.                   updatestage
  27.                 else
  28.                   set the forecolor of sprite a to 159
  29.                   updatestage
  30.                 end if
  31.               end if
  32.             end if
  33.           end if
  34.         end if
  35.       end if
  36.     end if
  37.   end repeat
  38. end