Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- integer mode=1;
- integer ch = 13;
- default{
- state_entry(){
- llListen(ch,"",llGetOwner(),"");
- }
- touch_start(integer num){
- if(mode==1){
- vector whereami=llGetPos()+<1.8,0,1.6>*llGetRot();
- vector FWOOSHH=llRot2Fwd(llGetRot())*55;
- rotation aim=llEuler2Rot(<90,0,90>*DEG_TO_RAD);
- llRezObject("dissed",whereami,FWOOSHH,aim,0);
- }
- }
- listen(integer chan,string who,key id,string msg){
- if(msg=="blox")
- mode=1;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment