Page 1 of 1

WATER HEIGHT greater than 100m

Posted: Fri Mar 12, 2021 12:23 am
by Shandon Loring
I hope this question isn't all wet, but wondering...

Is it possible to set a Worlds Water Height to greater than 100 meters?

I'm attempting to set it in Firestorm>Region/Estate>Terrain>Water Height

Thank you!!

Re: WATER HEIGHT greater than 100m

Posted: Fri Mar 12, 2021 12:40 am
by Ilan Tochner
Hi Shandon,

The maximum water height you can set via the viewer is 100m.

Re: WATER HEIGHT greater than 100m

Posted: Fri Mar 12, 2021 1:21 am
by Shandon Loring
Thank you Ilan!

If anyone needs it the following script works for me

--------------------------

//REGION WATER HEIGHT UTILITY
//Rough but gets the job done, suggest deleting object after water height is set
//Always works as a HUD in case you need to keep it with you as you jet around your region
// When script says "Ready for commands"
// Type in Local Chat /waterheight xxx
// (where xxx = your desired waterheight)
// Standard disclaimer: if it breaks not my fault, if you're concerned about this script breaking something Don't Use It. Etc Etc.

// WARNING: DO NOT SET FOR NEGATIVE VALUE!!!
// WARNING: DO NOT SET FOR NEGATIVE VALUE!!!
// WARNING: DO NOT SET FOR NEGATIVE VALUE!!!

// from http://opensimulator.org/wiki/OsSetRegionWaterHeight

float g_WaterHeight; // <---- Storage Var
integer g_ListenChan = 0;
list g_ltmp; // <--------Temporary buffer

default
{
state_entry()
{
llListen(g_ListenChan, "", llGetOwner(), ""); //Prepare listener
llSay(0, "Ready for commands");
}
listen(integer channel, string name, key id, string message)
{
g_ltmp = llParseString2List(message, [" "], []); // Split the message into chunks
if(llList2String(g_ltmp, 0) == "/waterheight") // Self explanatory
{
osSetRegionWaterHeight(llList2Float(g_ltmp, 1)); // Set the region water height to the specified value
llSay(0, "Setting region water height to "+llList2String(g_ltmp, 1)+"m (In case anyone was wondering)");
g_ltmp = []; // Flush buffers
}
}
}

Re: WATER HEIGHT greater than 100m

Posted: Fri Mar 12, 2021 1:17 pm
by Krull Kitty
I wonder what would happen if you set that script to a negative value? :>

Re: WATER HEIGHT greater than 100m

Posted: Fri Mar 12, 2021 6:02 pm
by Shandon Loring
Reportedly it immediately crashes your Region and prevents you from logging back into it. I didn't actually try that. I figure Oren has enough work! lol

I just needed a 500m deep ocean at Neaburn City 😃

Re: WATER HEIGHT greater than 100m

Posted: Wed Mar 17, 2021 3:54 am
by Krull Kitty
Would it not be interesting if a negative number created a deep and mysterious water hole?

And the sim it was used on suddenly relocated itself on the grid to an equally mysterious "Griduma Triangle" :D