Arcade Prehacks

Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1
    sakn's Avatar
    Join Date
    Apr 2011
    Location
    Near an xbox
    Posts
    49

    What does PUSH mean?

    When im looking into a swf in flasm i notice a use of the word push alot, usually followed by a useful word like money or health. What does push mean?

  2. #2
    RedFaceofAwesomeness's Avatar
    Join Date
    Dec 2010
    Location
    New York
    Posts
    621

    Re: What does PUSH mean?

    I think it means like variable or something like that!

  3. #3
    sakn's Avatar
    Join Date
    Apr 2011
    Location
    Near an xbox
    Posts
    49

    Re: What does PUSH mean?

    in depth some more please? is it something i should be concerned about?

  4. #4
    Willy's Avatar
    Join Date
    Jan 2011
    Location
    Michigan
    Posts
    713

    Re: What does PUSH mean?

    Push, in my mind, signifys something that you want to look at when trying to hack a game.
    Push, I means that it is a variable in the game. which is what you want to edit.
    Hope this helps

  5. #5
    sakn's Avatar
    Join Date
    Apr 2011
    Location
    Near an xbox
    Posts
    49

    Re: What does PUSH mean?

    I felt like it was how some people do the whole press M - Infinite Money, :P

  6. #6
    Willy's Avatar
    Join Date
    Jan 2011
    Location
    Michigan
    Posts
    713

    Re: What does PUSH mean?

    Nope not at all actually.
    I vaguely know how, and that is way off
    Atleast I am pretty sure, like I said that whole topic is very Vague to me

  7. #7
    Senior Member
    Join Date
    Feb 2010
    Location
    http://tinyurl.com/2atap49
    Posts
    2,328

    Re: What does PUSH mean?

    'push' calls out a variable to be set. For example, if the game needs to find out how much money the user has, it will go to the line that says "push 'money', 100".
    I suggest only editing lines that have push followed by a variable and then a number. Anything else might ruin the game if you don't know what you're doing.
    Um... I used to be a moderator here...

  8. #8
    Super Moderator ZuckeR's Avatar
    Join Date
    Feb 2010
    Location
    Germany
    Posts
    1,775

    Re: What does PUSH mean?

    Push does not set a variable it just adds a new value on top of the stack. At start the stack is completely empty until you push a value like 100 on it. Every push adds more on top of the stack so "push 'money', 100" actually adds two values to the stack. After that line there should be a setVariable which takes the top value of the stack and then sets this as the value of the second so money would be 100 then. This operation deletes these values from the stack, this is called pop and is the exact opposite of push.

    push - Add a value or a pointer to the top of the stack.
    pop - Remove the top value from the stack.
    add - Adds the top from the second value.
    subtract - Subtracts the top from the second value.
    multiply - Multiplies the two top values.
    not - Negates the top value.

    http://en.wikipedia.org/wiki/Stack_(data_structure)

  9. #9
    sakn's Avatar
    Join Date
    Apr 2011
    Location
    Near an xbox
    Posts
    49

    Re: What does PUSH mean?

    Your vast expanse of knowledge makes me jealous and honors me all at the same time. Well done. Aha

  10. #10

    Join Date
    Apr 2011
    Posts
    26

    Re: What does PUSH mean?

    push is the action of applying force to an object t- sorry wrong topic.

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •