Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. define(function () {
  2. 'use strict';
  3.  
  4. return function () {
  5. AudioManager.playSe({name: 'voice_merchant_welcome', volume: 90, pitch: 100, pan: 0 });
  6. $gameMessage.setBackground(0);
  7. $gameMessage.setPositionType(2);
  8. $gameMessage.add('\\n<\\c[7]Merchant>Welcome.');
  9. var goods = [
  10. [0, 1 , 0],
  11. [0, 2 , 0],
  12. [0, 3 , 0],
  13. [0, 4 , 0],
  14. [0, 5 , 0],
  15. [0, 6 , 0],
  16. [0, 7 , 0],
  17. [0, 8 , 0],
  18. [0, 9 , 0],
  19. [0, 10, 0],
  20. [0, 11, 0],
  21. [0, 12, 0],
  22. [0, 13, 0],
  23. [0, 14, 0],
  24. [0, 15, 0],
  25. [0, 16, 0],
  26. ];
  27. SceneManager.push(Scene_Shop);
  28. SceneManager.prepareNextScene(goods);
  29. };
  30. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement