Udrakoloader
1.0.0
Udrakoloader是一个MOD,目前与Samp和Halo(可能还有更多游戏)兼容。提供了在.NET中加载脚本(DLL)的能力。
基于ScripthookvDotnet和Sharpneedle。基本上由CLR托管组成,运行.NET插件。
- 由于以下原因,我不为此获得信誉:
一些示例:[编译DLL并放入“ Udrakoloader”文件夹中]
对于C#插件,您必须提供正确的名称空间目录。
在这种情况下
// 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下载