yuhsing

Untitled

Nov 17th, 2012
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1.  
  2. prontera,155,181,5 script Sample#walk_talk 757,{
  3. end;
  4.  
  5. OnInit:
  6. setarray .Message$[0],"Mesage 0",
  7. "Mesage 1",
  8. "Mesage 2",
  9. "Mesage 3",
  10. "Mesage 4";
  11.  
  12. while( 1 ){
  13. if( .Count >= getarraysize( .Message$ ) )
  14. .Count = 0;
  15. npcwalkto rand(150,160),rand(175,186);
  16. npctalk .Message$[.Count];
  17. .Count++;
  18. sleep rand(1000,5000);
  19. }
  20. end;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment