ID:1699951
 
How can I use DLL to make a mod for my game? For the server of the game? I'm a newbie stuff to things like this so if you can help me thank you. Q.Q

DLLs are server-only. By using the call() function, you can call functions in an external DLL file on the server's end. However, communication between the DLL and server is through string data, so anything being sent to and from the DLL needs to be in the form of a string. I don't know too much on this though.

Check the DM reference for the call() function.