using CookieAPI;
Imports CookieAPI
Memory NAMEOFOBJECT = new Memory("PROCCESSNAME")
Dim NAMEOFOBJECT As New Memory("PROCCESSNAME")
SetMemory(int address, long value, int size), this sets memory (most common one for "beginners") SetFloat(int address, float value), this sets float memory. SetDouble(int address, double value), this set double memory. NOP(int address, int value), this nops an address.
using System.Windows.Forms;using System;
using CookieAPI;
namespace Test
{
public partial class mainForm : Form
{
public mainForm()
{
InitializeComponent();
}
Memory mem = new Memory("iw5mp");
private void Clicked(object sender, EventArgs e)
{
mem.SetMemory(0x12345678, 100, 4);
mem.SetFloat(0x12345678, 100.0F);
mem.SetDouble(0x12345678, 100D);
}
}
}
Imports CookieAPI
Public Class mainForm
Dim mem As New Memory("iw5mp")
Private Sub Clicked(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button.Click
mem.SetMemory(&H12345678, 100, 4)
mem.SetFloat(&H12345678, 100.0F)
mem.SetDouble(&H12345678, 100D)
End Sub
End Class

and is there a YT vid for it ? 