Would using a source code like this work:

Code:
Imports MemHack.BlubbsDll
Public Class Form1

    Private hack As New MemoryHacking("crossfire", "cshell.dll")

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        hack.SetMemory(&H7F6, 0, 4)
        hack.SetMemory(&H2420, 0, 4)
        hack.Nop(&H834, &H90)
        '0x7F6 No nade
        '0x2420 instant reload
        '0x834 shotty spread
    End Sub
End Class
If this would work could someone give an example from this code how to lets say use the instant reload addy?

Thanks!