Re: Re: opensim 0.9.0.0 released (revision money server 807)
manza
投稿数: 6
Hi, Luisillo
I think Master Iseki will release the official version for 0.9.0 soon.
I have my temporary work around to use before that time. It work perfectly for opensim release 09.0.0. release.
1. I use Mono.Security.dll in the config directory. Because It is version 4.0.0.0, and I found the error message about usage of Mono.Security.dll old version. The Mono.Security.dll of the root of trunk directory is only version 2.0.0.0.
2. Fortunately I am a programmer, to solve the "DTLNSLMoneyModule.cs(178,15): error CS0535" error,
it need to insert some coding to the file opensim.currency\OpenSim.Modules.Currency\DTLNSLMoneyModule.cs.
The coding are the following 4 lines, you need to insert them at line no. 588 (after the line of "// for 0.8.3 over" but just right before the next line of "#endregion" ) :
public bool MoveMoney(UUID fromAgentID, UUID toAgentID, int amount, MoneyTransactionType type, string text)
{
return ForceTransferMoney(fromAgentID, toAgentID, amount, (int)TransactionType.MoveMoney, UUID.Zero, (ulong)0, UUID.Zero, text);
}
// Use as you own risk. More info or some help, contact me. Good Luck.
I think Master Iseki will release the official version for 0.9.0 soon.
I have my temporary work around to use before that time. It work perfectly for opensim release 09.0.0. release.
1. I use Mono.Security.dll in the config directory. Because It is version 4.0.0.0, and I found the error message about usage of Mono.Security.dll old version. The Mono.Security.dll of the root of trunk directory is only version 2.0.0.0.
2. Fortunately I am a programmer, to solve the "DTLNSLMoneyModule.cs(178,15): error CS0535" error,
it need to insert some coding to the file opensim.currency\OpenSim.Modules.Currency\DTLNSLMoneyModule.cs.
The coding are the following 4 lines, you need to insert them at line no. 588 (after the line of "// for 0.8.3 over" but just right before the next line of "#endregion" ) :
public bool MoveMoney(UUID fromAgentID, UUID toAgentID, int amount, MoneyTransactionType type, string text)
{
return ForceTransferMoney(fromAgentID, toAgentID, amount, (int)TransactionType.MoveMoney, UUID.Zero, (ulong)0, UUID.Zero, text);
}
// Use as you own risk. More info or some help, contact me. Good Luck.
投票数:70
平均点:3.86
投稿ツリー
-
Re: opensim 0.9.0.0 released (revision money server 807)
(Luisillo, 2017-8-17 1:18)
- Re: Re: opensim 0.9.0.0 released (revision money server 807) (Luisillo, 2017-8-17 1:35)
-
Re: Re: opensim 0.9.0.0 released (revision money server 807)
(manza, 2017-9-5 20:26)
- Re: Re: Re: opensim 0.9.0.0 released (revision money server 807) (Luisillo, 2017-9-5 23:10)
- Re: Re: opensim 0.9.0.0 released (revision money server 807) (manza, 2017-9-5 23:48)