Udrakoloader
1.0.0
UdrakoloaderはMODで、現在SAMPとHalo(おそらくさらに多くのゲームがあります)と互換性があります。 .NETで開発されたスクリプト(DLL)をゲームにロードする機能を提供します。
scripthookvdotnetとsharpneedleに基づいています。基本的に、.NETプラグインを実行するためのCLRホスティングで構成されています。
- 私は次の理由でこれを信用していません:
いくつかの例:[dllをコンパイルし、「udrakoloader」フォルダーの中に置く]
C#プラグインの場合、正しい名前空間ディレクトリを提供する必要があります。
この場合、["namespace emplesproject.udrakoloader"]を["namespace .udrakoloader"]に置き換えます。
// Plugin.cs
using System ;
using System . Collections . Generic ;
using System . Diagnostics ;
using System . Linq ;
using System . Text ;
using System . Windows . Forms ;
namespace ExampleProject . Udrakoloader
{
public class Plugin
{
public static int EntryPoint ( string pwzArgument )
{
string processName = Process . GetCurrentProcess ( ) . ProcessName ;
MessageBox . Show ( "C# Example | The current process is " + processName ) ;
return 0 ;
}
}
} 'Plugin.vb
Imports System
Imports System.Collections.Generic
Imports System.Diagnostics
Imports System.Linq
Imports System.Text
Imports System.Windows.Forms
Imports System.Reflection
Imports System.Runtime.CompilerServices
Imports System.Runtime.InteropServices
Imports System.Security
Namespace Udrakoloader
Public Class Plugin
Public Shared Function EntryPoint( ByVal pwzArgument As String ) As Integer
Dim processName As String = Process.GetCurrentProcess().ProcessName
MessageBox.Show( "vb Example | The current process is " & processName)
Return 0
End Function
End Class
End Namespace ゲーム用のプリリリースのダウンロード:Udrako Loaderのダウンロード