Advertisement
Guest User

Untitled

a guest
Aug 18th, 2012
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. //DELETE COMMENT IN FINAL VERSION
  2. {
  3. //Nothing = -1, Sora = 0, Playboy = 1, Fatboy = 2, Lilboy = 3, Toughboy = 4
  4. //Exist = 1, Not = 0
  5. "Actors" : [1,1,0,0,0],
  6. //Other example, Sora and Toughboy is [1,0,0,0,1]
  7. "Dialogues" :
  8. [
  9. {
  10. "Left" : 0, //Sora on left
  11. "Right" : 1, //Playboy on right
  12. "Active" : 0, //0 = left, 1 = right. Name is auto, in this case Sora
  13. "Text" : "\"When life give you lemons, don't make lemonade!\"\n..." //Spacing is manual. Keyword for enter is \n
  14. },
  15. {
  16. "Left" : 0,
  17. "Right" : 1,
  18. "Active" : 0,
  19. "Text" : "\"Make life take the lemons back! Get mad! I don’t want \nyour damn lemons, what am I supposed to do with these?\""
  20. },
  21. {
  22. "Left" : 0,
  23. "Right" : 1,
  24. "Active" : 1,
  25. "Text" : "\"WTF?\"\n..."
  26. }
  27. ]
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement