Results 1 to 11 of 11
  1. #1
    gangstavexx's Avatar
    Join Date
    Aug 2007
    Posts
    18
    Reputation
    10
    Thanks
    10

    code fo superman?

    hi, ima mod on another site, and i make hacks for public, and since the ones i posted has gotten detected, i am planning on makin a new one this weekend.
    anywayz, i jus wanted to know how i make the super man hack?
    jus copy and paste wat the code looks like and if timers, wat i should set intervals too

    thx

    p.s. i may post the trainer here too

  2. #2
    personperson's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Posts
    186
    Reputation
    10
    Thanks
    25
    Freeze the Z coordinates.

  3. #3
    wrasia's Avatar
    Join Date
    Jul 2007
    Location
    Netherlands, Nijmegen
    Posts
    454
    Reputation
    10
    Thanks
    86
    f(X)= 3X+2^6

  4. #4
    Iam"iDude"'s Avatar
    Join Date
    Sep 2007
    Location
    El Estado unido de América (Tejas)
    Posts
    235
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by gangstavexx View Post
    hi, ima mod on another site, and i make hacks for public, and since the ones i posted has gotten detected, i am planning on makin a new one this weekend.
    anywayz, i jus wanted to know how i make the super man hack?
    jus copy and paste wat the code looks like and if timers, wat i should set intervals too

    thx

    p.s. i may post the trainer here too
    ok i am still planing this but i have a code SUGGESTION in my head, i think it may work but i am not totally sure so here i go:

    Code:
    ' For X and Y, split it up or it will go so fuckin crazy :P
    Dim X As Long
    Dim X1 As Long
    Dim Y As Long
    Dim Y1 As Long
    Call ReadALong("Warrock", &H8B5288, X)
    Call ReadALong("Warrock", &H8B5288, Y)
    X1 = X + &H17C
    Y1 = Y + &H184
    X1 = X1 + "20"
    Y1 = Y1 + "20"
    i think that may work :-/ and if you look at it you will understand why.

  5. #5
    personperson's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Posts
    186
    Reputation
    10
    Thanks
    25
    Quote Originally Posted by Iam"iDude" View Post
    ok i am still planing this but i have a code SUGGESTION in my head, i think it may work but i am not totally sure so here i go:

    Code:
    ' For X and Y, split it up or it will go so fuckin crazy :P
    Dim X As Long
    Dim X1 As Long
    Dim Y As Long
    Dim Y1 As Long
    Call ReadALong("Warrock", &H8B5288, X)
    Call ReadALong("Warrock", &H8B5288, Y)
    X1 = X + &H17C
    Y1 = Y + &H184
    X1 = X1 + "20"
    Y1 = Y1 + "20"
    i think that may work :-/ and if you look at it you will understand why.
    Wouldn't that make you move infinitely and off the map if you put that in a timer? Also, I don't think using quotes on those numbers is a good idea... wouldn't VB read them as strings?

  6. #6
    Iam"iDude"'s Avatar
    Join Date
    Sep 2007
    Location
    El Estado unido de América (Tejas)
    Posts
    235
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by personperson View Post
    Wouldn't that make you move infinitely and off the map if you put that in a timer? Also, I don't think using quotes on those numbers is a good idea... wouldn't VB read them as strings?
    the reason i put
    Code:
    "20"
    is because you havent declared 20 a variable so it wouldnt work if you didnt put the ""

  7. #7
    personperson's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Posts
    186
    Reputation
    10
    Thanks
    25
    Well, I usually get errors when I do things like that, so I just dim it an integer, then call the variable.

  8. #8
    Iam"iDude"'s Avatar
    Join Date
    Sep 2007
    Location
    El Estado unido de América (Tejas)
    Posts
    235
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by personperson View Post
    Well, I usually get errors when I do things like that, so I just dim it an integer, then call the variable.
    here is some code the way he is talking about

    Code:
    ' For X and Y, split it up or it will go so fuckin crazy :P
    Dim TeleJump As Long
    Dim X As Long
    Dim X1 As Long
    Dim Y As Long
    Dim Y1 As Long
    Call ReadALong("Warrock", &H8B5288, X)
    Call ReadALong("Warrock", &H8B5288, Y)
    X1 = X + &H17C
    Y1 = Y + &H184
    X1 = X1 + TeleJump
    Y1 = Y1 + TeleJump
    i think that should work to.

  9. #9
    Iam"iDude"'s Avatar
    Join Date
    Sep 2007
    Location
    El Estado unido de América (Tejas)
    Posts
    235
    Reputation
    10
    Thanks
    2

    Exclamation !!! OH NOSE!!!

    just found out that i had a code error i had forgot to call it back into war rock :P

    Code:
    Dim X As Long
    Dim X1 As Long
    Dim Y As Long
    Dim Y1 As Long
    Call ReadALong("Warrock", &H8B5288, X)
    Call ReadALong("Warrock", &H8B5288, Y)
    X1 = X + &H17C
    Y1 = Y + &H184
    X1 = X1 + "20"
    Y1 = Y1 + "20"
    Call WriteALong("Warrock", X1)
    Call WriteALong("Warrock", Y1)
    now some1 tell me if that works :-D

  10. #10
    blipi's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Posts
    88
    Reputation
    10
    Thanks
    25
    My Mood
    Amused
    I think that yes, but in Call write a long u must put 1 parameter more, the value (I think long value )

  11. #11
    gangstavexx's Avatar
    Join Date
    Aug 2007
    Posts
    18
    Reputation
    10
    Thanks
    10
    Quote Originally Posted by Iam"iDude" View Post
    just found out that i had a code error i had forgot to call it back into war rock :P

    Code:
    Dim X As Long
    Dim X1 As Long
    Dim Y As Long
    Dim Y1 As Long
    Call ReadALong("Warrock", &H8B5288, X)
    Call ReadALong("Warrock", &H8B5288, Y)
    X1 = X + &H17C
    Y1 = Y + &H184
    X1 = X1 + "20"
    Y1 = Y1 + "20"
    Call WriteALong("Warrock", X1)
    Call WriteALong("Warrock", Y1)
    now some1 tell me if that works :-D
    cool dude thx, im tryit right now, good thing im workin n my trainer right now XD

Similar Threads

  1. Superjump and Superman Codes??Somebody help me with these codes??
    By jokuvaan11 in forum WarRock - International Hacks
    Replies: 3
    Last Post: 06-10-2007, 02:37 PM
  2. Pre-Regerstration - E3 Codes
    By Dave84311 in forum WarRock - International Hacks
    Replies: 67
    Last Post: 06-13-2006, 08:06 AM
  3. hi can any1 help me make or find a cheat code
    By CrUsHa in forum WarRock - International Hacks
    Replies: 3
    Last Post: 05-19-2006, 04:39 PM
  4. Superman
    By Dave84311 in forum General
    Replies: 81
    Last Post: 05-18-2006, 10:20 PM
  5. a Couple WPE Weapon codes?
    By phil823 in forum WarRock - International Hacks
    Replies: 16
    Last Post: 02-10-2006, 02:14 PM