Advertisement
ItzPartapika

Necessary Tutorial Stuff

Apr 10th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1.  
  2. // Injecting
  3. [DllImport("dllname.dll", CallingConvention = CallingConvention.Cdecl)]
  4. public static extern bool LaunchExploit();
  5.  
  6. // LuaC
  7. [DllImport("dllname.dll", CallingConvention = CallingConvention.Cdecl)]
  8. public static extern bool SendLuaCScript(string script);
  9.  
  10. // Full Lua (idk why it says limited lua)
  11. [DllImport("dllname.dll", CallingConvention = CallingConvention.Cdecl)]
  12. public static extern bool SendLimitedLuaScript(string script);
  13.  
  14. // Commands
  15. [DllImport("dllname.dll", CallingConvention = CallingConvention.Cdecl)]
  16. public static extern bool SendCommand(string script);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement