Udrakoloader
1.0.0
Udrakoloader는 현재 SAMP 및 Halo와 호환되는 모드입니다. .NET에서 개발 된 스크립트 (DLL)를 게임에로드하는 기능을 제공합니다.
ScripthookVdotnet 및 Sharpneedle을 기반으로합니다. 기본적으로 .NET 플러그인을 실행하려면 CLR 호스팅으로 구성됩니다.
- 나는 다음과 같은 이유로 이것에 대해 크레딧을받지 않습니다.
몇 가지 예 : [DLL을 컴파일하고 "Udrakoloader"폴더 안에 넣습니다]
C# 플러그인의 경우 올바른 네임 스페이스 디렉토리를 제공해야합니다.
이 경우 [ "Namespace exampleProject.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 로더 다운로드