RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

[2.0] Emote

Willie25

Sorceror
[2.0] Emote

This is Emote for Runuo 2.0.
Don't know the original creator just edited to 2.0 :p
Have fun with this, Thanks
 

Attachments

  • Emote.cs
    16.8 KB · Views: 299

Lord Neo

Sorceror
Players can Cheat using this script to get into doom or into green acres if you dont disable the "Puke Animation" from the script. Ive highlighted in RED the code that needs to be deleted.



Code:
				case 26:
					pm.PlaySound( pm.Female ? 813 : 1087 );
					pm.Say( "*pukes*" );
[COLOR="Red"]		            		if ( !pm.Mounted ) 
              					pm.Animate( 32, 5, 1, true, false, 0 ); 
            				Point3D p = new Point3D( pm.Location ); 
		            		switch( pm.Direction ) 
            				{ 
               					case Direction.North: 
							p.Y--; break;							 
		               			case Direction.South: 
							p.Y++; break;							 
               					case Direction.East: 
                  					p.X++; break;							 
		               			case Direction.West: 
                		  			p.X--; break; 							
               					case Direction.Right: 
		                  			p.X++; p.Y--; break;
               					case Direction.Down: 
                  					p.X++; p.Y++; break;
		               			case Direction.Left: 
                		  			p.X--; p.Y++; break;
               					case Direction.Up: 
		                  			p.X--; p.Y--; break;
		               			default: 
                		  			break; 
					} 
       				 	p.Z = pm.Map.GetAverageZ( p.X, p.Y ); 
                    
		            		Puke puke = new Puke(); 
            				puke.Map = pm.Map; 
		            		puke.Location = p; [/COLOR]					
break;
 
Top