Advertisement
ZoriaRPG

Waiting warp FFC v2

Apr 26th, 2018
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. ffc script waitingwarp
  2. {
  3.      void run()
  4.      {
  5.           int cp = ComboAt(Link->X+8,Link->Y+8);        
  6.           int type = Screen->ComboT[cp];
  7.           Screen->ComboT[cp] = 0;
  8.           while(ComboAt(Link->X+8,Link->Y+8)==cp)
  9.           {
  10.                Waitframe();
  11.           }
  12.           Screen->ComboT[cp] = type;
  13.           this->Data = 0; Quit();
  14.      }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement