Results 1 to 2 of 2

Threaded View

  1. #1
    Rechocto's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    128
    Reputation
    56
    Thanks
    107

    Warrock hack tutorials addendum

    Plenty of warrock nomenu tutorials out there..

    every single one of them uses superjump and nofalldamage as their example hacks.

    few (very few) have others included.

    thanks to google I found the number 1092779973 to be a good value for fullbright...

    My request is simple.

    A release of what each value should be set to for warrock hacks

    As a show of good faith, here's a starting lineup:

    NORECOIL (values 1-3) = 0
    SUPERJUMP = 1000
    FULLBRIGHT (values 1-3) = 1092779973 (needs updating, this makes everything golden xD)
    NEARFOG = 1120403456 (dont worry about nofog, this seems to work on its own.)
    FASTAMMO = 5000000
    " HEALTH = 5000000
    " REPAIR = 5000000
    " FLAG = 10000000
    NOBOUNDS = 0
    NOWATER = 0
    DIG = -2000
    SCOPE = 1
    LOWGRAVITY = 100.0f
    NOSPAWN = 0 (must page_readwrite see note below)
    looking forward to everyone else's submissions



    NOTE: Nospawn is a protected value so to make it easy handle it like this:

    Code:
    //No Spawn Wait
    {long t=0;
    unsigned long Protection;
    VirtualProtect((void*)ADR_QUICKSPAWN1, sizeof(t), PAGE_READWRITE, &Protection);
    memcpy((void*)ADR_QUICKSPAWN1, &t , sizeof(t));
    VirtualProtect((void*)ADR_QUICKSPAWN1, sizeof(t), Protection, 0);
    
    VirtualProtect((void*)ADR_QUICKSPAWN2, sizeof(t), PAGE_READWRITE, &Protection);
    memcpy((void*)ADR_QUICKSPAWN2, &t , sizeof(t));
    VirtualProtect((void*)ADR_QUICKSPAWN2, sizeof(t), Protection, 0);}
    Last edited by Rechocto; 04-10-2010 at 04:58 PM.

Similar Threads

  1. [[TUTORIAL]] How to make your OWN warrock hacks
    By th9end in forum WarRock Discussions
    Replies: 15
    Last Post: 08-19-2009, 02:16 AM
  2. Video tutorial: Making WarRock hack in Visual Basic
    By Darky in forum Visual Basic Programming
    Replies: 5
    Last Post: 02-12-2009, 02:47 PM
  3. Some of the best WarRock hacks [tutorial]
    By cr4sh08 in forum WarRock - International Hacks
    Replies: 23
    Last Post: 06-08-2008, 12:30 PM
  4. Tutorial - How to use Visual Basics 6 (vb6) for WarRock hacks
    By Oneirish in forum Visual Basic Programming
    Replies: 17
    Last Post: 05-26-2008, 07:24 AM
  5. Warrock Hack - Tutorial
    By Dave84311 in forum WarRock - International Hacks
    Replies: 667
    Last Post: 10-09-2007, 10:10 AM