Thread: Randomizing?
View Single Post
  #1  
Old 07-17-2012, 03:59 AM
Fysez Fysez is offline
Banned
Join Date: Apr 2012
Posts: 89
Fysez has a little shameless behaviour in the past
Randomizing?

So, I've been trying to work with making words/ect random.
I understand how to make numbers randomize, But it seems
I cannot figure out other things like words.

What I have an tried to do, Did not work:

PHP Code:
function onPlayerTouchsMe() {
this.chat1 "Hey";
  
this.chat2 "Hi";
  
this.chat3 "How";
  
this.chat4 "Are";
  
this.chat5 "You";
  
this.chat6 "To";
  
this.chat7 "Day?";
  
this.speech this.chat(int(random(1,8)));
  
this.chat this.speech;

Please help and teach me how I can fix this?

Last edited by Fysez; 07-17-2012 at 04:06 AM.. Reason: Spelling Error
Reply With Quote