Giter VIP home page Giter VIP logo

udrakoloader's Introduction

UdrakoLoader

passing

Introduction

Udrakoloader is a mod, Currently Compatible With SAMP and HALO [Possibly With many more games]. Provides the ability to load scripts (DLL) developed in .Net into the game.

Based on ScriptHookvDotNet and SharpNeedle . Basically consists of CLR Hosting, to run the .Net plugins.

-- I don't take credit for this for the following reasons:

  • Most of the code is from the SharpNeedle project, Modified with parts of ScriptHookvDotNet for more compatibility.

How to Install a Plugin?โ€‹

  • Extract the Plugin (.dll) into the folder "UdrakoLoader", in the root directory of the game.

Attention:

  • The .net DLLs must be compiled under the .Net Framework 4.0.
  • The name of the Plugin DLL must be the same as the Root Namespace.

Some examples : [Compile DLL and put inside the "Udrakoloader" folder]

For C# Plugins, you must provide the correct Namespace directory.

SampleImg

In this case Replace ["namespace ExampleProject.Udrakoloader"] with ["namespace .Udrakoloader"]

  • UdrakoLoader C# Plugin Example:
// 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;
       }
   }
}
  • UdrakoLoader VB Plugin Example:
'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

Contributors

  • Destroyer : Mod SharpNeedle Source . / Discord : Destroyer#8328
  • ChadSki / Usman Sabir : SharpNeedle Source .
  • crosire : ScriptHookvDotNet Examples.

Download

Download Pre Releases made for games: Udrako Loader Downloads

udrakoloader's People

Contributors

destroyerdarkness avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

proflylab 5l1v3r1

udrakoloader's Issues

Can't load dll

At first thank for your great project.
As I'm not good at c++, this is good for me.

And sorry if this dumb question.
I'm trying to load my dll(c#) file into my game, Monster Hunter Frontier(it's dead game, running on private server).
I downloaded Udrakoloader.dll and renamed it to Udrakoloader.asi to load with Ultimate ASI loader (https://github.com/ThirteenAG/Ultimate-ASI-Loader/releases).
Then placed my dll inside Udrakoloader folder.
Then I use x32dbg(a debugger) to check if the game loads what dll.
I can confirm Udrakoloader.asi is loaded but my dll is not loaded.
Am I wrong something?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.