Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1.  
  2. WORKS goal_no(integer) : "Goal #"
  3. WORKS group_no(integer) : "Goal Group #"
  4.  
  5. goal_state(choices) : "Goal Initial State" : 2 =
  6. WORKS* 1 : "Active"
  7. -Spawns model visible and does not automatically inactivate from "wait" key
  8. -Will inactivate if "Inactivated" by another goal entity.
  9. WORKS 2 : "Inactive"
  10. WORKS* 3 : "Removed"
  11. -Cannot be activated by touch once restored.
  12.  
  13.  
  14. items_allowed(integer) : "Has item #"
  15. h_i_g(integer) : "Has item from group #"
  16. hasnt_item_from_group(integer) : "Hasn't item from group #"
  17.  
  18. if_item_has_moved(integer) : "If item # has moved"
  19. if_item_hasnt_moved(integer) : "If item # hasn't moved"
  20.  
  21. WORKS if_goal_is_active(integer) : "If goal # active"
  22. WORKS if_goal_is_inactive(integer) : "If goal # inactive"
  23. WORKS if_goal_is_removed(integer) : "If goal # removed"
  24.  
  25. WORKS if_group_is_active(integer) : "If group # active"
  26. WORKS if_group_is_inactive(integer) : "If group # inactive"
  27. WORKS if_group_is_removed(integer) : "If group # removed"
  28.  
  29.  
  30. WORKS else_goal(integer) : "If criteria fails activate Goal #"
  31.  
  32. WORKS all_active(integer) : "If all goals in group # active..."
  33. WORKS last_impulse(integer) : "...activate goal #"
  34.  
  35. WORKS activate_goal_no(integer) : "Activate goal #"
  36. WORKS* inactivate_goal_no(integer) : "Inactivate goal #"
  37. -Does not work on trigger_multiple.
  38. WORKS* rv_g(integer) : "Remove goal #"
  39. -Cannot be removed while Active
  40. WORKS rs_g(integer) : "Restore goal #"
  41.  
  42.  
  43. WORKS activate_group_no(integer) : "Activate goals in group #"
  44. WORKS inactivate_group_no(integer) : "Inactivate goals in group #"
  45. WORKS rv_gr(integer) : "Remove goals in group #"
  46. WORKS rs_gr(integer) : "Restore goals in group #"
  47.  
  48. remove_spawnpoint(integer) : "Remove Spawn point #"
  49. restore_spawnpoint(integer) : "Restore Spawn point #"
  50. rv_s_h(integer) : "Remove Spawn group #"
  51. rs_s_h(integer) : "Restore Spawn group #"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement