Udrakoloader
1.0.0
Udrakoloader adalah mod, saat ini kompatibel dengan Samp dan Halo [mungkin dengan lebih banyak game]. Memberikan kemampuan untuk memuat skrip (DLL) yang dikembangkan di .net ke dalam game.
Berdasarkan ScripTHookVDotNet dan Sharpneedle. Pada dasarnya terdiri dari hosting CLR, untuk menjalankan plugin .net.
- Saya tidak mengambil kredit untuk ini karena alasan berikut:
Beberapa contoh: [Kompilasi DLL dan letakkan di dalam folder "Udrakoloader"]
Untuk plugin C#, Anda harus memberikan direktori namespace yang benar.
Dalam hal ini ganti ["namespace exampleProject.udrakoloader"] dengan ["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 Unduh Rilis Pra Dibuat untuk Game: Unduhan Udrako Loader