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!

Noob Pkers

michaelnc

Sorceror
Noob Pkers

Well, it's been a while since I posted any of my scripts in this forum although I have been scripting a lot lately. This was just for fun so please no flaming. If ya dont like it, dont use it.

The two scripts are...

NoobMage.cs
NoobDexer.cs

These two mobiles say the usual things any stupid ass noob would say when attacking someone. I'm sure you all know what I mean...

Just drop them in your custom folder :D
 

Attachments

  • Noob Pkers.zip
    2.4 KB · Views: 328

Mekaylah

Wanderer
I installed these yesterday and so far everyone is getting a kick out of them! It's a great script. I do have one question tho, is there an easy way to make it say more?
 

michaelnc

Sorceror
Yes, it is very easy to add more saying to the mobiles. Where you see the code:
Code:
        string[] kfcsay = new string[]
      { 
		 "OMG!",
		 "LMAO... you suck!",
		 "u noob",
		 "i rox u sux",
		 "go back to trammie!",

      };

Just add something like...
Code:
        string[] kfcsay = new string[]
      { 
		 "OMG!",
		 "LMAO... you suck!",
		 "u noob",
		 "i rox u sux",
		 "go back to trammie!",
                   "HEY LOOK IM SAYING SOMETHING NEW!",

      };

Very simple :D
 
Top