add some constants and reserve some linkset_data lsl event slots, compatible to mantis9081 patch, for now not accepted (any future implementation may diverge from that, even sl

This commit is contained in:
UbitUmarov
2023-06-02 18:30:28 +01:00
parent db1c739ef2
commit 2625eed5e4
6 changed files with 21 additions and 4 deletions

View File

@@ -1011,5 +1011,17 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
public const int NPCLOOKAT_FOCUS = 8;
public const int NPCLOOKAT_MOUSELOOK = 9;
public const int NPCLOOKAT_CLEAR = 10;
// future ?? linkset_data event
public const int LINKSETDATA_RESET = 0;
public const int LINKSETDATA_UPDATE = 1;
public const int LINKSETDATA_DELETE = 2;
public const int LINKSETDATA_OK = 0;
public const int LINKSETDATA_EMEMORY = 1;
public const int LINKSETDATA_ENOKEY = 2;
public const int LINKSETDATA_EPROTECTED = 3;
public const int LINKSETDATA_NOTFOUND = 4;
public const int LINKSETDATA_NOUPDATE = 5;
}
}