Advertisement
Guest User

Dmh Error Report

a guest
Nov 23rd, 2014
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. let bossObj;
  2. let bossX = 0;
  3. let bossY = 0;
  4. let imgBoss = GetCurrentScriptDirectory ~ "img/enm_char/enm06a.png";
  5. let bgImg = GetCurrentScriptDirectory ~ "img/bg/world06_obj_mesh_texture03a.png";
  6.  
  7. let spellSFX = GetCurrentScriptDirectory ~ "se/spellcard.wav";
  8. let bossDeathSFX = GetCurrentScriptDirectory ~ "se/BossEnd.wav"
  9.  
  10. @Initialize {
  11. bossObj = ObjEnemy_Create(OBJ_ENEMY_BOSS);
  12. ObjEnemy_Regist(bossObj);
  13.  
  14. ObjMove_SetPosition(bossObj,190,-100);
  15.  
  16. ObjMove_SetDestAtSpeed(bossObj,190,120,5);
  17.  
  18. LoadSound(spellSFX);
  19. LoadSound(bossDeathSFX);
  20.  
  21. PlaySE(spellSFX);
  22.  
  23. mainTask;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement