PS2 Code Types FzoVsy4

Welcome to the Revolution x Clan website. You can post say and do whatever you want here. Learn how to hack/code, talk trash hell just bullshit we don't care. ~xSHADOWx~
PS2 Code Types FzoVsy4

Welcome to the Revolution x Clan website. You can post say and do whatever you want here. Learn how to hack/code, talk trash hell just bullshit we don't care. ~xSHADOWx~
Would you like to react to this message? Create an account in a few clicks or log in to continue.


 
HomeSearchLatest imagesRegisterLog in
Staff Online


Latest topics
» DVAR Dump List
PS2 Code Types EmptySun Jul 03, 2016 4:21 pm by Shadow@ReVx

» Profile Copier
PS2 Code Types EmptySat Jul 02, 2016 10:42 am by Shadow@ReVx

» Copy Players Name
PS2 Code Types EmptyFri Jul 01, 2016 11:45 pm by Shadow@ReVx

» WII~VIIRUZ Code's
PS2 Code Types EmptyWed Mar 02, 2016 10:36 pm by Shadow@ReVx

» How To Make Black Ops DVAR Code's
PS2 Code Types EmptyWed Dec 09, 2015 6:20 pm by Shadow@ReVx

» Black Ops Class Name Changers
PS2 Code Types EmptyFri Jul 10, 2015 10:41 am by Shadow@ReVx

» 5 Part Series on Coding a Game in JavaScript
PS2 Code Types EmptyFri Jul 10, 2015 9:57 am by Shadow@ReVx

» Code's I Use On Black Ops
PS2 Code Types EmptyTue Jun 16, 2015 11:20 am by Shadow@ReVx

» Facebook Message Spam Script
PS2 Code Types EmptySat May 30, 2015 9:54 am by Shadow@ReVx

Top posters
Shadow@ReVx
PS2 Code Types Vote_lcapPS2 Code Types Voting_barPS2 Code Types Vote_rcap 
C!C4D4 3301
PS2 Code Types Vote_lcapPS2 Code Types Voting_barPS2 Code Types Vote_rcap 
May 2024
MonTueWedThuFriSatSun
  12345
6789101112
13141516171819
20212223242526
2728293031  
CalendarCalendar
Who is online?
In total there is 1 user online :: 0 Registered, 0 Hidden and 1 Guest

None

Most users ever online was 19 on Wed Jun 28, 2023 12:48 am
Poll
How Long Will It Take For Them To Know It's Us? ;)
1 Week
PS2 Code Types Vote_lcap33%PS2 Code Types Vote_rcap
 33% [ 1 ]
2 Weeks
PS2 Code Types Vote_lcap0%PS2 Code Types Vote_rcap
 0% [ 0 ]
3 Weeks
PS2 Code Types Vote_lcap0%PS2 Code Types Vote_rcap
 0% [ 0 ]
Never
PS2 Code Types Vote_lcap67%PS2 Code Types Vote_rcap
 67% [ 2 ]
Total Votes : 3

 

 PS2 Code Types

Go down 
AuthorMessage
Shadow@ReVx
Admin/ReVx Leader
Shadow@ReVx


Posts : 49
Join date : 2015-05-14

PS2 Code Types Empty
PostSubject: PS2 Code Types   PS2 Code Types EmptyTue May 19, 2015 1:43 pm

8-bit Constant Write

This command will constantly write the value
specified by dd to the address specified by aaaaaaa.


0aaaaaaa 000000dd
16-bit Constant Write

This command will constantly write the value
specified by dddd to the address specified by aaaaaaa.


1aaaaaaa 0000dddd
32-bit Constant Write

This command will constantly write the value
specified by dddddddd to the address specified by aaaaaaa.


2aaaaaaa dddddddd
Increment/Decrement Commands
8-bit Increment

This command adds the value specified by nn to
the value stored at the address aaaaaaaa.


301000nn aaaaaaaa
8-bit Decrement

This command subtracts the value specified by nn
to the value stored at the address aaaaaaaa.


302000nn aaaaaaaa
16-bit Increment

This command adds the value specified by nnnn to
the value stored at the address aaaaaaaa.


3030nnnn aaaaaaaa
16-bit Decrement

This command subtracts the value specified by nnnn
to the value stored at the address aaaaaaaa.


3040nnnn aaaaaaaa
32-bit Increment

This command adds the value specified by nnnnnnnn
to the value stored at the address aaaaaaaa.


30500000 aaaaaaaa
nnnnnnnn 00000000
32-bit Decrement

This command subtracts the value specified by nnnnnnnn
to the value stored at the address aaaaaaaa.


30600000 aaaaaaaa
nnnnnnnn 00000000
Test Commands
16-bit Equal

Only when the value at the address specified by aaaaaaa
is equal to the value specified by dddd will the next
line of code be executed.


Daaaaaaa 0000dddd
16-bit Not Equal

Only when the value at the address specified by aaaaaaa
is not equal to the value specified by dddd will the
next line of code be executed.


Daaaaaaa 0010dddd
16-bit Less Than

Only when the value at the address specified by aaaaaaa
is less than the value specified by dddd will the next
line of code be executed.


Daaaaaaa 0020dddd
16-bit Greater Than

Only when the value at the address specified by aaaaaaa
is greater than the value specified by dddd will the
next line of code be executed.


Daaaaaaa 0030dddd
16-bit Equal : Multiple Skip

Only when the value at the address specified by aaaaaaa
is equal to the value specified by dddd will the next nnn
lines of code be executed. Otherwise, they will be skipped.


Ennndddd 0aaaaaaa
16-bit Not Equal : Multiple Skip

Only when the value at the address specified by aaaaaaa
is not equal to the value specified by dddd will the next
nnn lines of code be executed. Otherwise, they will be skipped.


Ennndddd 1aaaaaaa
16-bit Less Than : Multiple Skip

Only when the value at the address specified by aaaaaaa
is less than the value specified by dddd will the next
nnn lines of code be executed. Otherwise, they will be skipped.


Ennndddd 2aaaaaaa
16-bit Greater Than : Multiple Skip

Only when the value at the address specified by aaaaaaa
is greater than the value specified by dddd will the next
nnn lines of code be executed. Otherwise, they will be skipped.


Ennndddd 3aaaaaaa
Miscellaneous Commands
Copy Bytes (GS2 v2.0 or higher)


a = Address to copy from
b = Address to copy to
n = Number of bytes to copy



5aaaaaaa nnnnnnnn
bbbbbbbb 00000000
32-bit Multi-Address Write

Starting with the address specified by aaaaaaa, this code will
write to xxxx addresses. The next address is determined by
incrementing the current address by (yyyy * 4). The value
specified by dddddddd is written to each calculated address. Also known as a "Patch Code."


4aaaaaaa xxxxyyyy
dddddddd 00000000

Read more: http://www.bullywiihacks.com/t3588-ps2-code-types#ixzz3abjLaq8F
Back to top Go down
https://revxclan.forumotion.com
 
PS2 Code Types
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
 :: Gaming :: Playstation :: Codes-
Jump to: