Advertisement
Guest User

Untitled

a guest
Jun 26th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. SCN SexoutTTWNovaScript
  2.  
  3. short lastDay
  4. short currentDay
  5. float Player_Distance
  6. float Nova_Distance
  7. int vDial
  8.  
  9. begin Gamemode
  10.  
  11. set Player_Distance to PlayerRef.getdistance SexoutTTWMoriatySaloonRentRoomMarker
  12. set Nova_Distance to NovaRef.getdistance SexoutTTWMoriatySaloonRentRoomMarker
  13.  
  14. if vDial == 1
  15. set lastDay to GameDaysPassed
  16. DBPrintC "Stage 1"
  17. if Player_Distance <= 264 && Nova_Distance <= 264
  18. DBPrintC "Stage 1A"
  19. NovaRef.stopwaiting SexoutDoNothing
  20. call fnSexoutActRunFull (Ar_Map "ActorA"::NovaRef, "ActorB"::PlayerRef, "CBDialogA"::SexoutTTWNovaTopicFINISH)
  21. set vDial to 2
  22. let currentDay := GameDaysPassed
  23. if (currentDay - lastDay) >= 1
  24. DBPrintC "Stage 2A"
  25. set vDial to 0
  26. elseif (currentDay - lastDay) < 1
  27. DBPrintC "Stage 2B"
  28. NovaRef.wait SexoutDoNothing
  29. endif
  30. elseif Player_Distance > 264 || Nova_Distance > 264
  31. DBPrintC "Stage 1B"
  32. NovaRef.wait SexoutDoNothing
  33. endif
  34. endif
  35.  
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement