Jump to content

Bridgette Puddles

Resident
  • Posts

    9
  • Joined

  • Last visited

Reputation

6 Neutral

Recent Profile Visitors

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

  1. thanks, I will try both and see which one works best on that end.
  2. of the two "mine and yours" what would you think would be less work on the server end, trying to keep the load low on my scripts?
  3. Thank you Wulfie after posting my 1st one it hit me like a ton of prims lol. integer Range(integer value) { integer Is_Range = value; if(value < 0) Is_Range = 0; else if (value > 100) Is_Range = 100; return value; }
  4. 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?
  5. 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.
  6. 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); } } } }
  7. 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.
  8. thanks you two, I was a bit lost on it. but works out well
  9. 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...