Jump to content

Malix Orfan

Resident
  • Posts

    2
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. okies I think that's it. thanks and +1
  2. hello can anyone help? this is an easy one I know! I have two scripts. one says something on channel ), one listens. Now, it works when I say the magic word in chat, but not when the script says it! default { state_entry() { llSetTimerEvent(10); } timer() { llSay(0,"plus"); } } and the listener is: default { state_entry() { llListen(0, "", NULL_KEY, "" ); } listen( integer channel, string name, key id, string message ) { if ( message == "plus" ) { llWhisper( 0, "more!" ); } } } what am I doing wrong? (yes I know its a basic question, couldn't find anything in any docs! thanks!
×
×
  • Create New...