Jump to content

Bridgette Puddles

Resident
  • Posts

    9
  • Joined

  • Last visited

Posts posted by Bridgette Puddles

  1. ok so I'm tracking a set of 8 ranges and I don't want code a mile-long script to check a range on an integer the basic idea I'm hoping to do is something like this

    (Item_A < 0 || Item_A > 100) keeping them above -1 and below 101

    But everything I have tried comes back as way out of range or stack heap.  Does anyone have any tips on this end?

  2. Thank you Quistess Alpha, With some cleaning and changing a few lines in your Movement and animation Override script I was able to slow down the av speed. Even worked better than I hoped it would, I no longer have to track the walk running end with the modding I did with it you are not able to use run/always run over riding the speed API.

    • Like 2
  3. about to pull my hair out lol, so I have been trying to get this to work for 3 hours and it's not slowing my speed down. any idea what I'm doing wrong?

     

    float IMPULSE = 5.6;
    key id  = NULL_KEY;
    
    default
    {
        
        state_entry()
        {
            llSetForce(<0,0,0>, TRUE);
            id = llGetOwner();
            llRequestPermissions(id,PERMISSION_TAKE_CONTROLS);  
            
        }
        
        run_time_permissions(integer perm)
        {
            if(perm & PERMISSION_TAKE_CONTROLS)
            {
                llTakeControls (CONTROL_FWD|CONTROL_BACK|CONTROL_LEFT|CONTROL_RIGHT|CONTROL_UP|CONTROL_DOWN,TRUE,TRUE);
            }
        }
        
        control(key id, integer level, integer edge)
        {
            if(level & CONTROL_FWD)
            {
                if(llGetAgentInfo(llGetOwner()) & AGENT_WALKING)  
                {
                    llApplyImpulse(<IMPULSE.0,0,0>,TRUE);            
                }
            }
        }
    }

     

  4. for 4 days now, I can't get to my main land due to a freaking fetish club. The own just sits their afking taking up a slot, and it seems half of the people in his club are afking. The main land only hold 40 and this dude has all over them taken all the time!

     

    A. When is linden labs going to get off their buts and put a end to clubs on the main land make make them rent a region.

    B. Make it so say a 1024 can host 3 to 5 avs 2048 5 to 10 avs etc....... This would put a end to being blocked from land I paid for and pay monthly to use.

    C. If they want to run a club on the main land on a smaller parcel make them pay double or triple the cost on the monthly land.

     

     

    • Like 1
    • Thanks 1
    • Sad 1
  5. integer A = 99

    integer B = 100

    What I want to do is take integer A max of 99 and carry over anything over 99 to integer B. Not sure how I would work that in lsl. I have looked at the wiki and done some goggle searches all failed. Seems there is not a lot of info for simple math in lsl. But hey any tips on it would help.

×
×
  • Create New...