about summary refs log tree commit diff stats
path: root/app/views/admin/dashboard
Commit message (Expand)AuthorAgeFilesLines
* Created admin panelKelly Rauchenberger2017-07-021-0/+1
f1a4d4e107'>^
e644f5c ^

af49b53 ^

d5e3bc6 ^



e036838 ^




















d5e3bc6 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

                     
                                

                                    

   



                                                                                




















                                                                                                  

                    
underwater_start = {}

function underwater_start.init()
  loadMapScripts("underwater")
  underwater.make_lucas_underwater()
end

function underwater_start.talk_to_fish1()
  StartCutscene()
  DisplayMessage("* You deserved what she did to you.", "Fish", SpeakerType.BOY)
  WaitForEndOfMessage()

  Delay(500)

  PanToSprite("fish1", 1000)
  WaitForPan()

  Delay(500)

  UnpauseSprite("fish1")
  RemoveEnclosureZone("fish1")
  DirectSpriteToLocation("fish1", "fish_destination", PathfindingOptions.CARDINAL_DIRECTIONS_ONLY)
  CameraFollowSprite("fish1")
  WaitForSpritePath("fish1")

  Delay(1000)
  DestroyNamedSprite("fish1")

  Delay(500)

  ReturnCamera(1000)

  HideCutsceneBars()
end