ChEaTdEViCe
WELCOME TO CHEAT DEVICE
GTAOnline popping here
ChEaTdEViCe
WELCOME TO CHEAT DEVICE
GTAOnline popping here



 
HomeHomeGallerySearchLatest imagesRegisterLog in

Share | 
 

 Jr.Coder App

View previous topic View next topic Go down 
Go to page : Previous  1, 2, 3
AuthorMessage
DarK_DemoN
Member
DarK_DemoN

Points Points : 6144
Posts : 381
Reputation : 25
Join date : 2011-01-25
Location : Hacking Kingdom

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeTue Apr 19, 2011 4:32 pm

@Jeff - Rapid throw nades isnt even close to Nade elevator. Rapid throw just enables you to throw nades 10x as fast as normal, it doesnt do anything beyond that unless you mod the code with the code from Nade elevator.

ForTuNeHaCKeR1520 wrote:

Unlike Rapid throw nades Nade elevator actually enables you to lift other players into the air either by using a gun of your choice to shoot the nades at the players feet and then following them through the air to place that player on buildings or by switching to nades and holding down R1 (less efective). Do not get these two code mixed up as they are totally different from eachother!!!

Thats the original "attention" marker we included with our code when we first relesed it. My friend and partner coder ForTuNeHaCKeR1520 wrote it so people WOULDNT get the two mixed up after release because they are so similar. And if you were wondering: no ForTuNeHaCKeR1520 is no longer in the PSP scene as it started to bore him but we still talk
Back to top Go down
http://1337codez.co.cc
SXYxJeff
VIPcoder
VIPcoder
SXYxJeff

Points Points : 708
Posts : 238
Reputation : 16
Join date : 2010-07-06

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeTue Apr 19, 2011 5:04 pm

DarK_DemoN wrote:
@Jeff - Rapid throw nades isnt even close to Nade elevator. Rapid throw just enables you to throw nades 10x as fast as normal, it doesnt do anything beyond that unless you mod the code with the code from Nade elevator.

ForTuNeHaCKeR1520 wrote:

Unlike Rapid throw nades Nade elevator actually enables you to lift other players into the air either by using a gun of your choice to shoot the nades at the players feet and then following them through the air to place that player on buildings or by switching to nades and holding down R1 (less efective). Do not get these two code mixed up as they are totally different from eachother!!!

Thats the original "attention" marker we included with our code when we first relesed it. My friend and partner coder ForTuNeHaCKeR1520 wrote it so people WOULDNT get the two mixed up after release because they are so similar. And if you were wondering: no ForTuNeHaCKeR1520 is no longer in the PSP scene as it started to bore him but we still talk

ik but thats what they say because the guns shot nades really fast
Back to top Go down
DarK_DemoN
Member
DarK_DemoN

Points Points : 6144
Posts : 381
Reputation : 25
Join date : 2011-01-25
Location : Hacking Kingdom

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeWed Apr 20, 2011 12:17 am

Very true lol and thatswhy we included that attention tag with code lol Wink
Back to top Go down
http://1337codez.co.cc
DragonZero
1337/Mod/GFX
1337/Mod/GFX
DragonZero

Points Points : 587
Posts : 210
Reputation : 41
Join date : 2010-03-17
Location : The Netherlands

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeThu Apr 21, 2011 1:57 am

Saying by every requiment "I understand" or "I will" is not enough...
You have to prove you're a coder/vip/1337 w/e. I am not saying you're are stealing codes, but I am not sure either you made those in your app.

I wanna ask you some questions. If you're a jr coder you should know them.

what does this do:

lui t0 $0880
lw t1 $1000(t0)
addiu t2 t1 $00A1
sw t2 $1000(t0)
jr ra

and this:

lui t0 $0880
lw t1 $2004(t0)
bgtz t1 $branch the second lui t2 $XXXX
nop
lui t2 $XXXX
lui t3 $XXXX
ori t3 t3 $XXXX
sw t3 $XXXX(t2)
beq 0 0 $branch to the jr ra
nop
lui t2 $XXXX
lui t3 $XXXX
ori t3 t3 $XXXX
sw t3 $XXXX(t2)
jr ra

just wrote them, tell me what they do and btw coding for mohh1 isn't harder then mohh2 and the same backwards :s
Back to top Go down
http://www.gamingblood.darkbb.com/
FOOD
1337 Coder
1337 Coder
FOOD

Points Points : 663
Posts : 179
Reputation : 18
Join date : 2011-04-06

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeThu Apr 21, 2011 8:24 am

lui t0 $0880
lw t1 $1000(t0)
addiu t2 t1 $00A1
sw t2 $1000(t0)
jr ra

this is loading 08801000 then adding 00a1 then returning back to 08801000.
therfore when you turn this code on it statrts like this: 08801000 then 088010A1 then back to 08801000.

lui t0 $0880
lw t1 $2004(t0)
bgtz t1 $branch the second lui t2 $XXXX
nop
lui t2 $XXXX
lui t3 $XXXX
ori t3 t3 $XXXX
sw t3 $XXXX(t2)
beq 0 0 $branch to the jr ra
nop
lui t2 $XXXX
lui t3 $XXXX
ori t3 t3 $XXXX
sw t3 $XXXX(t2)
jr ra

ok loads 08802004 then go to lui t2 if its greater then zero. nop the delay slot. then theres the load of a code. first lui first half of code address second lui for first half of the code value. the ori t3 t3 for the seconed half of the code value. then sw t3 to finish the code with the second half of the address back to lui t2.. the beq is go to jr ra if its equal to zero. nop delay slot. first lui first half of code address second lui for first half of the code value. the ori t3 t3 for the seconed half of the code value. then sw t3 to finish the code with the second half of the address back to lui t2
Back to top Go down
DarK_DemoN
Member
DarK_DemoN

Points Points : 6144
Posts : 381
Reputation : 25
Join date : 2011-01-25
Location : Hacking Kingdom

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeThu Apr 21, 2011 9:48 am

Great lol this has turned into a challenge thread Wink jk

I agree with you Drangon, im not sure he really made every code he posted but im not going to say straight out that he stole them. You gotta trust people sometimes and even though i was damn sure he was stealing the codes when he first started posting them with his name in the credits im not so sure now. Ive seen alot of people trying to take credit for making codes when they havent and they always seem to make a mistake in their story when there explaining that they "made" them giving themselves away and proving that there losers. FOOD has posted some codes with his name in the credits and even though all the codes have been made and released before i dont think he stole them. Trust is the key and im starting to really trust what he says now.

Oh and he got those commands right btw....
Back to top Go down
http://1337codez.co.cc
FOOD
1337 Coder
1337 Coder
FOOD

Points Points : 663
Posts : 179
Reputation : 18
Join date : 2011-04-06

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeThu Apr 21, 2011 9:53 am

yeah im doing some researching on the codes i made. i see some that i have thought i made where already made im editing my posts. but i still havent found nade elevator. PM me your site you were tlking about.
Back to top Go down
DarK_DemoN
Member
DarK_DemoN

Points Points : 6144
Posts : 381
Reputation : 25
Join date : 2011-01-25
Location : Hacking Kingdom

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeThu Apr 21, 2011 10:16 am

Will do
Back to top Go down
http://1337codez.co.cc
ShAdOwMoN51
Member
ShAdOwMoN51

Points Points : 1036
Posts : 298
Reputation : 15
Join date : 2010-06-11

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeThu Apr 21, 2011 11:16 am

DragonZero wrote:
Saying by every requiment "I understand" or "I will" is not enough...
You have to prove you're a coder/vip/1337 w/e. I am not saying you're are stealing codes, but I am not sure either you made those in your app.

I wanna ask you some questions. If you're a jr coder you should know them.

what does this do:

lui t0 $0880
lw t1 $1000(t0)
addiu t2 t1 $00A1
sw t2 $1000(t0)
jr ra

and this:

lui t0 $0880
lw t1 $2004(t0)
bgtz t1 $branch the second lui t2 $XXXX
nop
lui t2 $XXXX
lui t3 $XXXX
ori t3 t3 $XXXX
sw t3 $XXXX(t2)
beq 0 0 $branch to the jr ra
nop
lui t2 $XXXX
lui t3 $XXXX
ori t3 t3 $XXXX
sw t3 $XXXX(t2)
jr ra

just wrote them, tell me what they do and btw coding for mohh1 isn't harder then mohh2 and the same backwards :s
bull shit.
Back to top Go down
FOOD
1337 Coder
1337 Coder
FOOD

Points Points : 663
Posts : 179
Reputation : 18
Join date : 2011-04-06

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeThu Apr 21, 2011 11:21 am

what does that suppose to mean?
Back to top Go down
ShAdOwMoN51
Member
ShAdOwMoN51

Points Points : 1036
Posts : 298
Reputation : 15
Join date : 2010-06-11

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeThu Apr 21, 2011 12:36 pm

idk any of tht hahaha
Back to top Go down
Squeeb
24/7 superman
24/7 superman
Squeeb

Points Points : 2376
Posts : 781
Reputation : 13
Join date : 2010-07-07

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeFri Apr 22, 2011 4:09 am

any of what?
Back to top Go down
FOOD
1337 Coder
1337 Coder
FOOD

Points Points : 663
Posts : 179
Reputation : 18
Join date : 2011-04-06

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeSat Apr 23, 2011 9:19 pm

hmmm i wonder if DZ gonna let me be a coder..lol
Back to top Go down
DarK_DemoN
Member
DarK_DemoN

Points Points : 6144
Posts : 381
Reputation : 25
Join date : 2011-01-25
Location : Hacking Kingdom

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeSun Apr 24, 2011 12:26 am

He should, youre pretty good FOOD Wink. Have you gotten my PM about prx making?
Back to top Go down
http://1337codez.co.cc
Squeeb
24/7 superman
24/7 superman
Squeeb

Points Points : 2376
Posts : 781
Reputation : 13
Join date : 2010-07-07

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeSun Apr 24, 2011 3:46 am

-.- a PM that didnt include me?
Back to top Go down
FOOD
1337 Coder
1337 Coder
FOOD

Points Points : 663
Posts : 179
Reputation : 18
Join date : 2011-04-06

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeSun Apr 24, 2011 7:26 am

yeah I have im still learn C/C++ i dont understand much but yeah lol
Back to top Go down
DarK_DemoN
Member
DarK_DemoN

Points Points : 6144
Posts : 381
Reputation : 25
Join date : 2011-01-25
Location : Hacking Kingdom

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeSun Apr 24, 2011 9:43 am

@hghghg - lol you didnt ask bro

@FOOD - Alright if you need help with programing just ask
Back to top Go down
http://1337codez.co.cc
FOOD
1337 Coder
1337 Coder
FOOD

Points Points : 663
Posts : 179
Reputation : 18
Join date : 2011-04-06

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeSun Apr 24, 2011 11:56 am

Posting this for DZ

Guides I posted:
http://www.thecheatdevice.com/t859-how-a-subroutine-works
http://www.thecheatdevice.com/t860-commands-to-make-a-joker
http://www.thecheatdevice.com/t873-undma-ing-inf-health
http://www.thecheatdevice.com/t923-explaining-a-code
http://www.thecheatdevice.com/t924-searching-co-ords
http://www.thecheatdevice.com/t870-tempar-to-nitepr

Your question earlier in this topic has been answered..
Back to top Go down
DragonZero
1337/Mod/GFX
1337/Mod/GFX
DragonZero

Points Points : 587
Posts : 210
Reputation : 41
Join date : 2010-03-17
Location : The Netherlands

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeSun Apr 24, 2011 9:53 pm

FOOD wrote:
lui t0 $0880
lw t1 $1000(t0)
addiu t2 t1 $00A1
sw t2 $1000(t0)
jr ra

this is loading 08801000 then adding 00a1 then returning back to 08801000.
therfore when you turn this code on it statrts like this: 08801000 then 088010A1 then back to 08801000.


lui t0 $0880
lw t1 $2004(t0)
bgtz t1 $branch the second lui t2 $XXXX
nop
lui t2 $XXXX
lui t3 $XXXX
ori t3 t3 $XXXX
sw t3 $XXXX(t2)
beq 0 0 $branch to the jr ra
nop
lui t2 $XXXX
lui t3 $XXXX
ori t3 t3 $XXXX
sw t3 $XXXX(t2)
jr ra

ok loads 08802004 then go to lui t2 if its greater then zero. nop the delay slot. then theres the load of a code. first lui first half of code address second lui for first half of the code value. the ori t3 t3 for the seconed half of the code value. then sw t3 to finish the code with the second half of the address back to lui t2.. the beq is go to jr ra if its equal to zero. nop delay slot. first lui first half of code address second lui for first half of the code value. the ori t3 t3 for the seconed half of the code value. then sw t3 to finish the code with the second half of the address back to lui t2

1. The area I marked red is complete wrong.
2. The second explaining, I am not asking for every line, I'm asking what it does if you activate.

try again
Back to top Go down
http://www.gamingblood.darkbb.com/
FOOD
1337 Coder
1337 Coder
FOOD

Points Points : 663
Posts : 179
Reputation : 18
Join date : 2011-04-06

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeSun Apr 24, 2011 10:05 pm

oh um...08801000 turns into 088010A1 scratch but im half asleep right now Sleep but i dont want to be a Jr. Coder for this site anymore too much work just to be a JUNIOR Coder but its more like appling to be an Elite Coder Laughing
Back to top Go down
DragonZero
1337/Mod/GFX
1337/Mod/GFX
DragonZero

Points Points : 587
Posts : 210
Reputation : 41
Join date : 2010-03-17
Location : The Netherlands

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeSun Apr 24, 2011 10:06 pm

Its NOT elite, the questions I ask are very easy if you're a jr coder...
Back to top Go down
http://www.gamingblood.darkbb.com/
FOOD
1337 Coder
1337 Coder
FOOD

Points Points : 663
Posts : 179
Reputation : 18
Join date : 2011-04-06

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeSun Apr 24, 2011 10:10 pm

ugh um....I get confused with addiu as you can tell took me a while to fix flag protector because addiu was needed....but I dont want to be a coder anymore im gonna learn how to make my own cheatdevice now lol
Back to top Go down
DragonZero
1337/Mod/GFX
1337/Mod/GFX
DragonZero

Points Points : 587
Posts : 210
Reputation : 41
Join date : 2010-03-17
Location : The Netherlands

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeSun Apr 24, 2011 10:11 pm

addiu = add on a short way. I realy like it because I spear much lines with it in my jokers/subroutines


Last edited by DragonZero on Sun Apr 24, 2011 10:17 pm; edited 1 time in total
Back to top Go down
http://www.gamingblood.darkbb.com/
FOOD
1337 Coder
1337 Coder
FOOD

Points Points : 663
Posts : 179
Reputation : 18
Join date : 2011-04-06

Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitimeSun Apr 24, 2011 10:16 pm

yes i know like addiu $0004 to enemy #1 instead of putting all enemys but idk gets me confused sometimes when u do somthing like this = addiu t3 t1 $0004 or addiu t1 zero $0004 but yeah there you have it folks
Back to top Go down
Sponsored content




Jr.Coder App - Page 3 _
PostSubject: Re: Jr.Coder App   Jr.Coder App - Page 3 I_icon_minitime

Back to top Go down
 

Jr.Coder App

View previous topic View next topic Back to top 
Page 3 of 3Go to page : Previous  1, 2, 3

Permissions in this forum:You cannot reply to topics in this forum
ChEaTdEViCe ::  :: Forum :: Accepted apps-
Create a forum | ©phpBB | Free forum support | Report an abuse | Forumotion.com