Gaming A Basic Guide on How to Create AR codes

Status
Not open for further replies.

elixirdream

Well-Known Member
Member
Joined
May 27, 2008
Messages
10,007
Trophies
0
Location
6th Dimention
Website
Visit site
XP
114
Country
Malaysia
iii said:
elixirdream said:
i will rephrase things in such manner, curley's guide is good and clear enough~!
if someone doesn't even understand such simple guide!
then just leave this to others or just REQUEST

I am sure that I understand such simple guide!!!!!
BUT I just want some clarification about some AR instructions.....

EXCUSE ME! i am not even talking to you and mind your own business
code type and guide.. surely is 2 different WORD
in this GUIDE there isn't anything on teaching you how to use the code type extensively
it only provides you the information hence you require clarification that i can fairly understand

can't you see i am talking about GUIDE not CODE TYPE?
and can't you read the following post after yours...

EDIT: 1000 posts
 

iii

Member
Newcomer
Joined
Jun 12, 2009
Messages
7
Trophies
0
XP
2
Country
Hong Kong
elixirdream said:
i will rephrase things in such manner, curley's guide is good and clear enough~!
if someone doesn't even understand such simple guide!
then just leave this to others or just REQUEST

Which post did your post reply?

QUOTE(elixirdream @ Jun 14 2009, 04:21 PM) EXCUSE ME! i am not even talking to you and mind your own business
code type and guide.. surely is 2 different WORD
in this GUIDE there isn't anything on teaching you how to use the code type extensively
it only provides you the information hence you require clarification that i can fairly understand

can't you see i am talking about GUIDE not CODE TYPE?
and can't you read the following post after yours...

EDIT: 1000 posts

I think the word "following" should be "previous".
Just of curiosity, what is the data source of Narin`s Some Useful Info on Code Types..??? Is it based on original research???
 

iPikachu

C3's personal flamebot and fail artist
Member
Joined
Oct 27, 2008
Messages
2,060
Trophies
0
Website
Visit site
XP
110
Country
Senegal
on behalf of a certain person on irc:


iii said:
About Some Useful Info on Code Types..

0XXXXXXX YYYYYYYY
32bit write of YYYYYYYY to location:
(xxxxxxx + ‘offset’)

1XXXXXXX ????YYYY
16bit write of YYYY to location:
(XXXXXX + ‘offset’)

2XXXXXXX ??????YY
8bit write of YY to location:
(XXXXXXX + ‘offset’)

3XXXXXXX YYYYYYYY
32bit ‘If less-than’ instruction.
If the value at (XXXXXXX or ‘offset’ when address is 0) < YYYYYYYY then execute the following block of instructions.
Conditional instructions can be nested.

4XXXXXXX YYYYYYYY
32bit ‘If greater-than’ instruction.
If the value at (XXXXXXX or ‘offset’ when address is 0) > YYYYYYYY then execute the following block of instructions.
Conditional instructions can be nested.

5XXXXXXX YYYYYYYY
32bit ‘If equal’ instruction.
If the value at (XXXXXXX or ‘offset’ when address is 0) == YYYYYYYY then execute the following block of instructions.
Conditional instructions can be nested.

6XXXXXXX YYYYYYYY
32bit ‘If not equal’ instruction.
If the value at (XXXXXXX or ‘offset’ when address is 0) != YYYYYYYY then execute the following block of instructions.
Conditional instructions can be nested.

7XXXXXXX ZZZZYYYY
16bit ‘If less-than’ instruction.
If the value at (XXXXXXX or ‘offset’ when address is 0) masked by ZZZZ < YYYY then execute the following block of instructions.
Conditional instructions can be nested.

8XXXXXXX ZZZZYYYY
16bit ‘If greater-than’ instruction.
If the value at (XXXXXXX or ‘offset’ when address is 0) masked by ZZZZ > YYYY then execute the following block of instructions.
Conditional instructions can be nested.

9XXXXXXX ZZZZYYYY
16bit ‘If equal’ instruction.
If the value at (XXXXXXX or ‘offset’ when address is 0) masked by ZZZZ == YYYY then execute the following block of instructions.
Conditional instructions can be nested.

AXXXXXXX ZZZZYYYY
16bit ‘If not equal’ instruction.
If the value at (XXXXXXX or ‘offset’ when address is 0) masked by ZZZZ != YYYY then execute the following block of instructions.
Conditional instructions can be nested.

BXXXXXXX ????????
Load offset register.
Loads the offset register with the data at address (XXXXXXX + ‘offset’)
Used to perform pointer relative operations.

C??????? NNNNNNNN
Repeat operation.
Repeats a block of codes for NNNNNNNN times. The block can include conditional instructions.
Repeats blocks cannot contain further repeats.

D0?????? ????????
End-if instruction.
Ends the most recent conditional block.

D1?????? ????????
End-repeat instruction.
Ends the current repeat block. Also implicitly ends any conditional instructions inside the repeat block.

D2?????? ????????
End-code instruction.
Ends the current repeat block (if any), then End-if's any further outstanding conditional statements.
Also sets ‘offset’ and ‘stored’ to zero.

D3?????? YYYYYYYY
Set offset register.
Loads the offset register with the value YYYYYYYY.

D4?????? YYYYYYYY
Add to ‘stored’.
Adds YYYYYYYY to the ‘stored’ register.

D5?????? YYYYYYYY
Set ‘stored’.
Loads the value YYYYYYYY into the ‘stored’ register.

D6?????? XXXXXXXX
32bit store and increment.
Saves all 32 bits of ‘stored’ register to address (XXXXXXXX + ‘offset’). Post-increments ‘offset’ by 4.

D7?????? XXXXXXXX
16bit store and increment.
Saves bottom 16 bits of ‘stored’ register to address (XXXXXXXX + ‘offset’). Post-increments ‘offset’ by 2.

D8?????? XXXXXXXX
8bit store and increment.
Saves bottom 8 bits of ‘stored’ register to address (XXXXXXXX + ‘offset’). Post-increments ‘offset’ by 1.

D9?????? XXXXXXXX
32bit load "stored" from address.
Loads ‘stored’ with the 32bit value at address (XXXXXXXX + ‘offset’)

DA?????? XXXXXXXX
16bit load ‘stored’ from address.
Loads ‘stored’ with the 16bit value at address (XXXXXXXX + ‘offset’)

DB?????? XXXXXXXX
8bit load "stored" from address.
Loads ‘stored’ with the 8bit value at address (XXXXXXXX + ‘offset’)

EXXXXXXX NNNNNNNN VVVVVVVV VVVVVVVV * ((NNNNNNNN+7)/8)
Direct memory write.
Writes NNNNNNNN bytes from the list of values VVVVVVVV to the addresses starting at (XXXXXXX + ‘offset’)

FXXXXXXX NNNNNNNN
Memory copy.
Copies NNNNNNNN bytes from addresses starting at the ‘offset’ register to addresses starting at XXXXXXXX.

DC000000: //dcxxxxxx : Add a value onto offset register

C4000000: //Load offset register with address of the current position in the codelist (can self modify)

C5000000: //Every x frames code.. c5000000 mmmmnnnn //If ((frame_count & nnnn)==mmmm) then..

C6000000: //c6000000 : Store offset register to address

What can DD000000, DE000000, DF000000 do???

Is "C??????? NNNNNNNN" (Repeat operation) meant "CW?????? NNNNNNNN, where W != 4 and W != 5 and W != 6"???

What does a bunch of "?"s mean???
one word:
READand look in the damn database.


Y = SOMETHING
? = SOMETHING

on the request of someone i can't tell you what they stand for.
mellow.gif


before i forget, your query!

QUOTEIs "C??????? NNNNNNNN" (Repeat operation) meant "CW?????? NNNNNNNN, where W != 4 and W != 5 and W != 6"???
what the hell is this?!
WHAT THE HELL IS CW?!?!?!0M6 CW!!!!! LOOKE I HERDS YOU LIEK NOOBISH LANG SO I CR8S NOOB1SH L4NG HERDE~!YEAH I R0X0RZ
 

iii

Member
Newcomer
Joined
Jun 12, 2009
Messages
7
Trophies
0
XP
2
Country
Hong Kong
In my opinion, iPikachu`s reply is quite rude, and is offensive to me!!!

Why I ask the following question~

QUOTE said:
Is "C??????? NNNNNNNN" (Repeat operation) meant "CW?????? NNNNNNNN, where W != 4 and W != 5 and W != 6"???

This is because I see that~

C4000000

C5000000

C6000000

have special meanings!!!

Please don`t blame or insult me!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 

Frederica Bernkastel

Well-Known Member
Member
GBAtemp Patron
Joined
Jan 31, 2008
Messages
3,169
Trophies
2
Age
29
Location
Hinamizawa
XP
999
Country
Japan
iii said:
In my opinion, iPikachu`s reply is quite rude, and is offensive to me!!!

Why I ask the following question~

QUOTE said:
Is "C??????? NNNNNNNN" (Repeat operation) meant "CW?????? NNNNNNNN, where W != 4 and W != 5 and W != 6"???

This is because I see that~

C4000000

C5000000

C6000000

have special meanings!!!

Please don`t blame or insult me!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

MassFacepalm.jpg
EDIT: sorry, only half a post there,
a ? generally means that you replace it with anything... like x, y, z, a, b, c, ! and alot of other things.
 

elixirdream

Well-Known Member
Member
Joined
May 27, 2008
Messages
10,007
Trophies
0
Location
6th Dimention
Website
Visit site
XP
114
Country
Malaysia
none of us is trying to be rude or what.... but you surely being a xxxx yourself
nevermind...

anyway, this is what you wanted to know.... if you still don't understand... i also don't know how to put it in simple english words for you
(SINCE MY ENGLISH IS SO SUCKY UNTIL YOU CAN'T UNDERSTAND.. following and judging who am i talking to~! Yes, i love talking without pointing fingers)
Code:
C5000000 xxxxyyyy - Counter 
Each time the cheat engine is executed, the counter is incremented by 1.
If (counter & yyyy) == xxxx then execution status is set to true.
Else it is set to false.
i think C4 and C6 was clear enough...so i am not going to post anything on that

and where in the world you found
QUOTE said:
What can DD000000, DE000000, DF000000 do???
is that your own custom code type?

and for your information
CODEC??????? NNNNNNNN
Repeat operation.
Repeats a block of codes for NNNNNNNN times. The block can include conditional instructions.
Repeats blocks cannot contain further repeats.
got nothing to do with those codetypes
you are just confusing yourself

what can C????????? NNNNNNNN do?
REPEAT AN operation....
 

iii

Member
Newcomer
Joined
Jun 12, 2009
Messages
7
Trophies
0
XP
2
Country
Hong Kong
elixirdream said:
where in the world you found ...
is that your own custom code type?

Why I ask the following question~

QUOTE said:
What can DD000000, DE000000, DF000000 do???

Because I CANNOT find these code types in Some Useful Info on Code Types.....

I think what elixirdream said is that "these code types either do nothing or constitute some AR code error".


elixirdream said:
got nothing to do with those codetypes
you are just confusing yourself

Why I ask the following question~

QUOTE
Is "C??????? NNNNNNNN" (Repeat operation) meant "CW?????? NNNNNNNN, where W != 4 and W != 5 and W != 6"???

Because I doubt that I can REPEAT AN operation by using~

C4000000 NNNNNNNN

or

C5000000 NNNNNNNN

or

C6000000 NNNNNNNN

I think what elixirdream said is that "you need to use only~

CW?????? NNNNNNNN

to REPEAT AN operation"...
 

Spiritofpower

Member
Newcomer
Joined
Jun 13, 2009
Messages
5
Trophies
0
XP
71
Country
United States
I'll repost this as many times as i need to.
QUOTE said:
I would like to request a code for Chou soujuu mecha MG (it's a japanese game)
i would like either a infinite HP code or an all mecha code.
(note: i tried to make one, but not only do i not understand it, no$gba refuses to load the game mad.gif (if i broke any rules, i don't know them all, so don't please don't flame me))
 

iPikachu

C3's personal flamebot and fail artist
Member
Joined
Oct 27, 2008
Messages
2,060
Trophies
0
Website
Visit site
XP
110
Country
Senegal
iii said:
In my opinion, iPikachu`s reply is quite rude, and is offensive to me!!!
you should see me when i'm at my worst. Beeeeeeware....

yaypsp.php


QUOTE said:
Why I ask the following question~

What can DD000000, DE000000, DF000000 do???

Because I CANNOT find these code types in Some Useful Info on Code Types.....

I think what elixirdream said is that "these code types either do nothing or constitute some AR code error".


Why I ask the following question~

QUOTE said:
Is "C??????? NNNNNNNN" (Repeat operation) meant "CW?????? NNNNNNNN, where W != 4 and W != 5 and W != 6"???

Because I doubt that I can REPEAT AN operation by using~

C4000000 NNNNNNNN

or

C5000000 NNNNNNNN

or

C6000000 NNNNNNNN

I think what elixirdream said is that "you need to use only~

CW?????? NNNNNNNN

to REPEAT AN operation"...


C4000000: //Load offset register with address of the current position in the codelist (can self modify)

C5000000: //Every x frames code.. c5000000 mmmmnnnn //If ((frame_count & nnnn)==mmmm) then..

C6000000: //c6000000 : Store offset register to address


DOES IT SAY REPEAT???YOU'RE DOING IT WRONG
? does NOT mean ANYTHING IT MEANS SOMETHING IF YOU HAD READ THE FIRST PAGE
we dont treat you people like a god and answer to your every whim, how would you learn?!
QUOTEWhat can DD000000, DE000000, DF000000 do???

so where did you get them from?!?!!?

they either don't exist, or

QUOTE
I think what elixirdream said is that "these code types either do nothing or constitute some AR code error"
self-owned? oh well have to go to school/
 

iii

Member
Newcomer
Joined
Jun 12, 2009
Messages
7
Trophies
0
XP
2
Country
Hong Kong
Just a frank advice to iPikachu, if you do not know the answer of a question, PLEASE DON`T say some moonshine, okay? And being silent doesn`t imply that you are a mute.
 

iPikachu

C3's personal flamebot and fail artist
Member
Joined
Oct 27, 2008
Messages
2,060
Trophies
0
Website
Visit site
XP
110
Country
Senegal
Firstly. Is. It. Okay.

If. I. Speak. Like. This?

So. You. Can. Absorb.

Every. Single. Word.


iii said:
Just a frank advice to iPikachu, if you do not know the answer of a question, PLEASE DON`T say some moonshine, okay? And being silent doesn`t imply that you are a mute.
Did. You. Not. See.

My. Colourful. Text.

Before. Mthr.

Changed. Them.

Back. To. Black?

Whats. Moonshine?

I. Only. Recognise.

The. Word. Moonspeak.

(Which. Is. Japanese,

As. Some. People Call. It.)
..

Sorry.

If. Its. A.

Difficult. Word.

To. Understand.


Moonshine is a common term for home-distilled alcohol, especially in places where this practice is illegal.

1. moonshine

Moonshine is illegally distilled homemade whisky, usually with a very high alcohol content. It got its name because it was normally distilled at night "by the light of the moon." Most moonshine is distilled in West Virginia, Kentucky and Virginia.
The only reason that moonshine is illegal is because there anyone who distills spirits in the U.S. has to pay a federal tax. Moonshiners don't pay the tax. Local police usually ignore moonshiners because "they ain't hurtin' anyone."

2. moonshine

General term for homemade, unaged (and therefore colorless) drinking alcohol. The term came into use during the Prohibition era in the United States when stills (homemade distilleries) throughout the southeast made liquor from corn, potatoes, sugar and other available ingredients, in direct defiance of the law, in order to meet the never-diminished demand.
Moonshine (see also "white lightning") as a term refers to the alcohol's clear, colorless potency.
Moonshine ain't nothin' but sunshine that's been cooked down a little bit, Deputy.

3. Moonshine

1.A drink with such a potent punch it will put hair on your chest then burn it off
2.Something hillbillys make when they cant afford to go to town to buy beer and of whiskey
3.A drink known to cause blindness and second only to petrol in potency
Damn boy you drink moonshine why dont you just go huff some paint thinner

4. moonshine

Illegal alcoholic drink brewed illegally during 1930s prohibition in America. Brewers often used industrial alcohol which lead to much blindness and brain damage in those who drank it.
That moonshine gave old Jonny brain damage.

5. moonshine

A homemade drink high in alcohol. Also less commonly known as boomshine
Hey i know this girl Claritta that makes some real good moonshine

6. Moonshine

Guy cums into his hands, slaps hands together, and then shines cum onto girl's butt cheeks.
We did moonshine last night and it felt great!
moonshine moon shine cum sex butt

7. moonshine

its good and sold in european countries at little wooden stands.
it must be consumed from a flask
it has a high alcohol percentage
passing out on sum lady's kitchen floor while under the influence of moonshine

8. Moonshine

Slang. Term refers to an anus that has been so thoroughly cornholed that the orifice has been polished to a fine sheen.
"Man, I took booty call on that girl so many times last night that her moonshine nearly blinded me!!"

9. moonshine

To punch someone in the nuts and then moon then. Also called tapping the keg.
I just moonshined his ass.

10. moonshine

Booze with blow in it. Smuggled during prohibition in the 1920's.
Let's drink some moonshine!

So.

I. Am. So.

Fucking. Sure.

That. You. Are.

Referring. To.

6. And. 8.


o_o..

Facepalm.

I'm.

Not. Supposed.

To. Know. These. Things.

But. I. Can't. Go.

On. A. Distorted.

Meaning.

(un)Fortunately.

The. Very. Same.

Person. On. IRC.

Told. Me. Where.

To. Find. The.

Meaning.


QUOTEAnd being silent doesn`t imply that you are a mute.


I.

Wasn't. Being. Silent.


I'm.

Not. A. Mute.

As. I. Said.

In. My. First. Post,

On. The. Behalf.

Of. SOMEONE's, Request,

I. Clearly.

Cannot. Tell. You.

What. They. Mean.

Because,

Actually. Prior. To. Reading.

Your. Post,

I. Hadn't. Known.

What. They. Meant.

Then. I. Read.

The. First. Page,

And. The. Answers.

Were. ALL. There.

I. Can't. Believe.

I. Woke. Up.

To. This. And.

I. Spent. One.

Hour. And. 20.

Minutes. On. This.

Also. You. Just.

Dont. Understand. The.

Insttructions. By. Posters.

Hamha!

 

SoulAnger

MENUdo's Developer
Member
Joined
Jul 3, 2007
Messages
743
Trophies
0
Website
Visit site
XP
217
Country
Sorry to be off topic.. But, man I just learned one awesome word today. Moonshine~!
biggrin.gif

Thanks iii and iPikachu. Have a hamha and a very pikachu day... what ever that is.. ^^
 

solitaryCross

Member
Newcomer
Joined
May 14, 2009
Messages
14
Trophies
0
Age
36
Location
Lleh Nezorf
Website
Visit site
XP
126
Country
hi, i use an EDGE card. i use the latest version of the software and i regularly update my cheats from cheats.gbatemp.net.

after reading the various cheat compilation threads and their first page instructions, i was directed here.

now, to my query.

almost all of the cheats for FIRE EMBLEM Shadow Dragon does not work except for the getting all the items.

i'd like to know if there is a way to remedy my dilemma.

thank you...
 

elixirdream

Well-Known Member
Member
Joined
May 27, 2008
Messages
10,007
Trophies
0
Location
6th Dimention
Website
Visit site
XP
114
Country
Malaysia
i made those codes and were stress tested by others
hence is more of a flash cart issue!
please try at least the latest firmware
because one of our tester didn't have the problem (he is using edge)
 
Status
Not open for further replies.

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    Xdqwerty @ Xdqwerty: im back