|
Adham DeCuir
Registered User
Join date: 18 Jul 2007
Posts: 4
|
11-13-2007 21:35
Hey guys.. I have been to a few sims where when I TP in I get a blue menu drop down welcome messages. This is far more noticeable when you want to list a rule or make special notice instead of using the chat welcome script. Does anyone know if this script is free or can be purchase in world. Any help would be greatly appreciated. I have been searching the forums with no luck so I decided to post.  Adham
|
|
Void Singer
Int vSelf = Sing(void);
Join date: 24 Sep 2005
Posts: 6,973
|
11-14-2007 00:07
it'd be built the same way as the ones that use chat or notecard gives... a sensor, a list of people that it's already seen and pop a dialog if that person isn't in the list, and add them, roughly list vgLstAlreadyHarassed; integer vgIntSearch; default{ state_entry(){ llSensorRepeat( 10.0 ); } sensor( integer vIntSensed ){ do{ --vIntSensed; vgIntSearch = llListFindList( vgLstAlreadyHarassed, (list)llDetectedName( vIntSensed ) ); if (vgIntSearch == -1){ vgLstAlreadyHarassed = llDetectedName( vIntSensed ) + llList2List( vgLstAlreadyHarassed, 1, 49 ); llDialog( vIntSensed, "message", ["button 1", "button 2"], -42 ); } }while (vIntSensed); } }
add a listen event if you want buttons to do anything
_____________________
| | . "Cat-Like Typing Detected" | . This post may contain errors in logic, spelling, and | . grammar known to the SL populace to cause confusion | | - Please Use PHP tags when posting scripts/code, Thanks. | - Can't See PHP or URL Tags Correctly? Check Out This Link... | - 
|
|
Adham DeCuir
Registered User
Join date: 18 Jul 2007
Posts: 4
|
11-14-2007 00:19
Great! Thanks Void.. This helps mucho!
|