Udrakoloader
1.0.0
O Udrakoloader é um mod, atualmente compatível com SAMP e Halo [possivelmente com muitos mais jogos]. Fornece a capacidade de carregar scripts (DLL) desenvolvido no .NET no jogo.
Baseado no scripthookvdotnet e no SharpNeedle. Basicamente, consiste em hospedagem de CLR, para executar os plugins .NET.
- Não recebo crédito por isso pelos seguintes motivos:
Alguns exemplos: [compilar DLL e colocar dentro da pasta "Udrakoloader"]
Para plugins C#, você deve fornecer o diretório de namespace correto.
Nesse caso, substitua ["namespace exemploproject.udrakoloader"] por ["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 Download pré -lançamentos feitos para jogos: Downloads Udrako Loader