Advertisement
ZoriaRPG

TestScreenD.zs

Jun 25th, 2017
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. global script testdmapscreend{
  2.     void run(){
  3.         Game->SetDMapScreenD(0,0,1,40);
  4.         while(1){
  5.             if ( Link->PressEx1 ) {
  6.                 Trace( Game->GetDMapScreenD(0,0,1) );
  7.             }
  8.             Waitdraw(); Waitframe();
  9.         }
  10.     }
  11. }
  12.  
  13.  
  14.  
  15. global script testscreend{
  16.     void run(){
  17.         Screen->D[1] = 40;
  18.         while(1){
  19.             if ( Link->PressEx1 ) {
  20.                 Trace( Game->GetDMapScreenD(0,0,1) );
  21.             }
  22.             Waitdraw(); Waitframe();
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement