Advertisement
ijontichy

puke 193

Apr 15th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.56 KB | None | 0 0
  1. script 193 (void)
  2. {
  3.     int strIndex = addString("potato");
  4.     int herp = getString(strIndex);
  5.  
  6.     print(d:strIndex, s:"\n", s:herp);
  7.  
  8.     int strIndex2 = addString(StrParam(n:0));
  9.     int derp = getString(strIndex2);
  10.  
  11.     print(d:strIndex2, s:"\n", s:derp);
  12.     strIndex = reallocString(strIndex, "You say potato, I say pie... tell me why... tell me why!");
  13.     Delay(70);
  14.  
  15.     Print(d:strIndex, s:"\n", s:getString(strIndex));
  16.  
  17.     Delay(35);
  18.     Print(s:dumpStrings(0));
  19.  
  20.     freeString(strIndex2);
  21.  
  22.     Delay(35);
  23.     Print(s:dumpStrings(100));
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement