Advertisement
ijontichy

test.acs

Apr 15th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.31 KB | None | 0 0
  1. #include "zcommon.acs"
  2.  
  3. int derp[7] = {112, 111, 116, 97, 116, 111, 0};
  4.  
  5. script 193 (void)
  6. {
  7.     int i = 0;
  8.     int ch; int st;
  9.  
  10.     while (1)
  11.     {  
  12.         ch = derp[i++];
  13.         st = StrParam(s:st, c:ch);
  14.  
  15.         if (ch == 0)
  16.         {  
  17.             break;
  18.         }
  19.     }
  20.  
  21.     Print(s:st);
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement