Advertisement
Guest User

Untitled

a guest
Feb 15th, 2014
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. //#CLIENTSIDE
  2. function onPlayerChats() {
  3. if(player.chat == "/hug"){
  4. setani("grab", null);
  5. }
  6. if(player.chat == "/Dance") {
  7. player.dir = 2;
  8. setani("dance",null);
  9. }
  10. }
  11. if(player.chat == "/sit") {
  12. setani("sit",null);
  13. }
  14. if(player.chat == "/run") {
  15. setani("walk",null);
  16. }
  17. if(player.chat == "/jump") {
  18. setani("jump",null);
  19. }
  20. if(player.chat == "/omg") {
  21. setani("omg",null);
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement