home *** CD-ROM | disk | FTP | other *** search
/ Encyklopedia Omnia / Planeta.iso / data / g_deriva.cst / 00010_Script_pallinoBehavior < prev    next >
Text File  |  2000-10-17  |  577b  |  18 lines

  1. property newX, newY, palliniSchermata
  2. global gCanClick, gCatenaccio
  3.  
  4. on getPropertyDescriptionList
  5.   
  6.   set p_list = [#newX: [ #comment:   "new X:", #format: #integer, #default: 0 ], #newY: [ #comment:   "new Y:", #format: #integer, #default: 0 ], #palliniSchermata: [ #comment:   "n╛ pallini:", #format: #integer, #default: 5 ]]
  7.   return p_list  
  8. end
  9.  
  10. on sposta me
  11.   set gCanClick = FALSE
  12.   set the loc of sprite the currentSpriteNum to point(newX, newY)
  13.   if palliniSchermata = count(gCatenaccio) then
  14.     go next
  15.   else
  16.     set gCanClick = TRUE
  17.   end if
  18. end