Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- integer spawn_check;
- default
- {
- state_entry()
- {
- llListen(-11223,"Fish Pond","","");
- }
- listen(integer channel, string what, key who, string msg)
- {
- /*
- while(msg == "CheckRod"&&spawn_check==TRUE)
- {
- llSay(-11223,"testloopp");
- llSay(-11223,"Equip");
- if(spawn_check==FALSE)
- {
- llSay(-11223,"UnEquip");
- llSay(-11223,"breakloop");
- break;
- }
- }
- */
- if(msg == "CheckRod")
- {
- llSay(-11223,"Equip");
- }
- }
- /*
- attach(key id)
- {
- //llSay(-11223, (string) llGetKey());
- llOwnerSay(llGetKey());
- id = llGetKey();
- if(id == NULL_KEY)
- {
- spawn_check = FALSE;
- }
- else if(id != NULL_KEY)
- {
- spawn_check = TRUE;
- }
- }
- on_rez(integer start_param)
- {
- spawn_check = TRUE;
- frod = llDetectedKey(0);
- if(msg == "CheckRod")
- {
- llSay(-11223,"Equip");
- }
- }
- */
- }
Add Comment
Please, Sign In to add comment