• Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

ROM Raiders

Name:Ben
E-Mail:[email protected]
MSN/AIM/YIM/ICQ: Msn, [email protected]
Time Zone: GMT +0
Skills: Spriting, inserting graphics, Tile spriting, general graphics making, userbar making and animating, ow spriting.
Proof of Work: Here
Past Experience:Aether, Nirvana, Golden legacy.
 
Name: Codec
E-Mail: [email protected]
MSN/AIM/YIM/ICQ: Msn (I just gave you it ^_^)
Time Zone: GMT
Skills: OW Spriter, Tile Spriter, Spriter, Banner Maker, Tile Inserting, Mapping.
Proof of Work:
Spoiler:



Past Experience: Elemental Curse, Aether, (and some others)(quite alot)
 
Name: NiKaNoRoU CJ
E-Mail: [email protected]
MSN/AIM/YIM/ICQ: same as above
Time Zone: GMT+3
Skills: OW/Trainer spriting
Proof of Work: My correspondive posts in the topics mentioned below.

Past Experience: I've sprited for the following hacks:
[] Pokemon enCODED [] [HotM Sept]Pokemon Eruption [] Pokemon: Sacred Fire [] Pokemon Mythic Legends [] Pokemon Shimmering Tempest []

Also spriting as for various hack such as Pokemon Time Squad and Pokemon Shadow's Haze



Bonus: I can speak decent Italian.
 
[PokeCommunity.com] ROM Raiders
Name:psychic-boy
E-Mail:[email protected]
MSN:[email protected]
Time Zone:greenwich
Skills:scripting and trainer spirteing
Proof of Work:attached bellow
Past Experience:3 lone hacks my current hack and a few real games.

trainer spirte's
Spoiler:


Scripting
Spoiler:

 
[PokeCommunity.com] ROM Raiders
Name:psychic-boy
E-Mail:[email protected]
MSN:[email protected]
Time Zone:greenwich
Skills:scripting and trainer spirteing
Proof of Work:attached bellow
Past Experience:3 lone hacks my current hack and a few real games.

trainer spirte's
Spoiler:


Scripting
Spoiler:

These were all stolen, he's been posting every were asking to join teams and he can't even sprite XD
 
Sure, heres a Red I did from scratch

Uhm... sorry but it looks kinda weird... Plus the outline is definitely too straight and dark.


Name:Ben
E-Mail:[email protected]
MSN/AIM/YIM/ICQ: Msn, [email protected]
Time Zone: GMT +0
Skills: Spriting, inserting graphics, Tile spriting, general graphics making, userbar making and animating, ow spriting.
Proof of Work: Here
Past Experience:Aether, Nirvana, Golden legacy.

Your proofs a a bit too less to judge, I would say. Anything else to show off?


Name: Codec
E-Mail: [email protected]
MSN/AIM/YIM/ICQ: Msn (I just gave you it ^_^)
Time Zone: GMT
Skills: OW Spriter, Tile Spriter, Spriter, Banner Maker, Tile Inserting, Mapping.
Proof of Work:
Spoiler:



Past Experience: Elemental Curse, Aether, (and some others)(quite alot)

Well, the only thing I actually like is that overworld, (though I'm not counting mapping, as that's just an extra)... Got more perhaps?


Name: NiKaNoRoU CJ
E-Mail: [email protected]
MSN/AIM/YIM/ICQ: same as above
Time Zone: GMT+3
Skills: OW/Trainer spriting
Proof of Work: My correspondive posts in the topics mentioned below.

Past Experience: I've sprited for the following hacks:
[] Pokemon enCODED [] [HotM Sept]Pokemon Eruption [] Pokemon: Sacred Fire [] Pokemon Mythic Legends [] Pokemon Shimmering Tempest []

Also spriting as for various hack such as Pokemon Time Squad and Pokemon Shadow's Haze


Bonus: I can speak decent Italian.

Well, if you ask me those are more examples of sprite editing rather than actual spriting.


These were all stolen, he's been posting every were asking to join teams and he can't even sprite XD

Yeah, I noticed myself... Actually, he even mixed text editing with scripting.
 
Name:BrokenRoses aka Kody
E-Mail:[email protected]
MSN/AIM/YIM/ICQ:
Time Zone:Eastern
Skills:Mapping, Scripting, title, intro, tiles, ows inserting
Proof of Work:My Self hack located in sig called "My Hack"
Past Experience:Self game hack
 
Name: Brannon Gomes (0m3GA ARS3NAL
E-Mail: [email protected] (You have this already...)
MSN/AIM/YIM/ICQ: Same as above
Time Zone: -8:00 PST
Skills: Scripting, Mapping
Proof of Work:
I'm only going for scripter... (Do you really need proof, I've known you forever now...)
The Beginning of the script explains what it does in comments, don't skip them.
This script is for FIRE RED, but can easily be adapted to R/S/E with a few flag and movement changes.
I can not provide Screenshots, as my PSP is not with me at the moment, I forgot it at my friend Mike's place... I can get some tomorrow around 8 PM (-8:00 PST mind you)
Code:
// This is a lock that requires a lock-picking ability
// above LV 0x46 (70)
// In order to pick a lock, your Picking level must be
// the same or greater than the level of the lock.
// If the level is lower, there is a chance the lock pick will break
// In this event the user must buy a new one.
// The chance of picking a lock while a lower level is the
// player's picking level out of 100 (The maximum pick level)
// If you pick a lock correctly, you level up one level. (With a maximum level of 100
// Though breaking a pick isn't BAD, since they are relatively easy
// to get a hold of. (Cheaply)

//More can be added to this script, like an event happening if you pick the lock, like a door
//opening, or an item given, simple changes, no need to include ever scenario at this time.)

//Variables
#define Picking_Level 0x8000
#define Lock_Level 0x8003
#define Break_Chance 0x8004

//Flags
#define Pick# 0x1000

#dynamic 0x800000

#org @start
lock
checkflag Pick#
if b_== goto @AlreadyPicked
checkitem 0x178 1 // I've replaced the Old Sea Map with my lockpick
if b_>> goto @No_Pick
setvar Lock_level 0x46
comparevars Lock_Level Picking_Level
if b_>> call @Warning
setflag Pick#
message @Pick_Attempt 0x6
pause 0x10
sound 0x1D
pause 0x5
sound 0x1D
pause 0x20
sound 0x1E
applymovement 0xFF @YAY
waitmovement 0x0
message @Lock_Picked 0x6
call @Level_Up
release
end

#org @AlreadyPicked //This #org statement can be pre-compiled and branched to to save space...
message @Already_Picked_Message 0x6
release
end

#org @No_Pick //As well as this branch...
message @Need_Pick 0x6
release
end

#org @warning
message @Warning_Message 0x5
compare LASTRESULT 0x0
if b_true goto @quit
random 99
copyvar Break_Chance LASTRESULT
comparevars Break_Chance Picking_Level
if b_<< goto @Break_Pick
return

#org @Break_Pick
removeitem 0x178 1
message @Pick_Attempt 0x6
pause 0x10
sound 0x1D
pause 0x5
sound 0x1D
pause 0x20
sound 0xCB
applymovement 0xFF @Sad
waitmovement 0x0
message @Pick_Has_Broken 0x6
release
end

#org @Level_Up //Can ALSO be compiled before-hand
compare Picking_Level 99
if b_== goto @quit
addvar Picking_Level 1
return

#org @quit
release
end

#org @Already_Picked_Message
= You've already picked this lock.

#org @Need_Pick
= This lock looks pretty simple...

#org @Warning_Message
= Your lockpick level isn't high\nenough to pick this lock without a\lchance of breakage.  Continue?

#org @Pick_Attempt
= [player] attempts to pick the lock.

#org @Lock_Picked
= The lock has been picked! Your\ngetting better at this!

#org @Pick_Has_Broken
= Too bad, your lockpick has broken.

#org @YAY
#raw 0x66 0xFE

#org @Sad
#raw 0x64 0xFE
Past Experience: Well, not much to say here, I've never really seriously worked on a hack before... I've helped Linkandzelda out with a few script problems he was having in Liquid Crystal, Hmm, I guess you'll just have to base this on your past experiences with me, and such... I've got a lot of experience scripting though, I guess it isn't much just saying so without sufficient proof, but just because I've never (seriously) worked on a hack doesn't mean I'm not bad... look at most hacks nowadays, most suck, I don't wanna contribute to something that will die...


Ending Comments: Yeah, I added this section on my own, lol.
Well, I guess all I can say is, I know you probably don't need another scripter, but I'm talented to the best of my knowledge, and I've Memorized Silver version to every detail... I think I could be of some help on Oro Sole, I mean, I've already helped Liquid Crystal... I've pointed out bugs in Liquid Crystal that Linkandzelda never even found. I'll script for you with enthusiasm, and will never give up,no matter the task. *Cheesy, yet loyal*
 
Last edited:
Name:BrokenRoses aka Kody
E-Mail:[email protected]
MSN/AIM/YIM/ICQ:
Time Zone:Eastern
Skills:Mapping, Scripting, title, intro, tiles, ows inserting
Proof of Work:My Self hack located in sig called "My Hack"
Past Experience:Self game hack

Sorry, but the proofs are not enough to join. Feel free to try again when you get better.


Name: Brannon Gomes (0m3GA ARS3NAL
E-Mail: [email protected] (You have this already...)
MSN/AIM/YIM/ICQ: Same as above
Time Zone: -8:00 PST
Skills: Scripting, Mapping
Proof of Work:
I'm only going for scripter... (Do you really need proof, I've known you forever now...)
The Beginning of the script explains what it does in comments, don't skip them.
This script is for FIRE RED, but can easily be adapted to R/S/E with a few flag and movement changes.
I can not provide Screenshots, as my PSP is not with me at the moment, I forgot it at my friend Mike's place... I can get some tomorrow around 8 PM (-8:00 PST mind you)
Code:
// This is a lock that requires a lock-picking ability
// above LV 0x46 (70)
// In order to pick a lock, your Picking level must be
// the same or greater than the level of the lock.
// If the level is lower, there is a chance the lock pick will break
// In this event the user must buy a new one.
// The chance of picking a lock while a lower level is the
// player's picking level out of 100 (The maximum pick level)
// If you pick a lock correctly, you level up one level. (With a maximum level of 100
// Though breaking a pick isn't BAD, since they are relatively easy
// to get a hold of. (Cheaply)

//More can be added to this script, like an event happening if you pick the lock, like a door
//opening, or an item given, simple changes, no need to include ever scenario at this time.)

//Variables
#define Picking_Level 0x8000
#define Lock_Level 0x8003
#define Break_Chance 0x8004

//Flags
#define Pick# 0x1000

#dynamic 0x800000

#org @start
lock
checkflag Pick#
if b_== goto @AlreadyPicked
checkitem 0x178 1 // I've replaced the Old Sea Map with my lockpick
if b_>> goto @No_Pick
setvar Lock_level 0x46
comparevars Lock_Level Picking_Level
if b_>> call @Warning
setflag Pick#
message @Pick_Attempt 0x6
pause 0x10
sound 0x1D
pause 0x5
sound 0x1D
pause 0x20
sound 0x1E
applymovement 0xFF @YAY
waitmovement 0x0
message @Lock_Picked 0x6
call @Level_Up
release
end

#org @AlreadyPicked //This #org statement can be pre-compiled and branched to to save space...
message @Already_Picked_Message 0x6
release
end

#org @No_Pick //As well as this branch...
message @Need_Pick 0x6
release
end

#org @warning
message @Warning_Message 0x5
compare LASTRESULT 0x0
if b_true goto @quit
random 99
copyvar Break_Chance LASTRESULT
comparevars Break_Chance Picking_Level
if b_<< goto @Break_Pick
return

#org @Break_Pick
removeitem 0x178 1
message @Pick_Attempt 0x6
pause 0x10
sound 0x1D
pause 0x5
sound 0x1D
pause 0x20
sound 0xCB
applymovement 0xFF @Sad
waitmovement 0x0
message @Pick_Has_Broken 0x6
release
end

#org @Level_Up //Can ALSO be compiled before-hand
compare Picking_Level 99
if b_== goto @quit
addvar Picking_Level 1
return

#org @quit
release
end

#org @Already_Picked_Message
= You've already picked this lock.

#org @Need_Pick
= This lock looks pretty simple...

#org @Warning_Message
= Your lockpick level isn't high\nenough to pick this lock without a\lchance of breakage.  Continue?

#org @Pick_Attempt
= [player] attempts to pick the lock.

#org @Lock_Picked
= The lock has been picked! Your\ngetting better at this!

#org @Pick_Has_Broken
= Too bad, your lockpick has broken.

#org @YAY
#raw 0x66 0xFE

#org @Sad
#raw 0x64 0xFE
Past Experience: Well, not much to say here, I've never really seriously worked on a hack before... I've helped Linkandzelda out with a few script problems he was having in Liquid Crystal, Hmm, I guess you'll just have to base this on your past experiences with me, and such... I've got a lot of experience scripting though, I guess it isn't much just saying so without sufficient proof, but just because I've never (seriously) worked on a hack doesn't mean I'm not bad... look at most hacks nowadays, most suck, I don't wanna contribute to something that will die...


Ending Comments: Yeah, I added this section on my own, lol.
Well, I guess all I can say is, I know you probably don't need another scripter, but I'm talented to the best of my knowledge, and I've Memorized Silver version to every detail... I think I could be of some help on Oro Sole, I mean, I've already helped Liquid Crystal... I've pointed out bugs in Liquid Crystal that Linkandzelda never even found. I'll script for you with enthusiasm, and will never give up,no matter the task. *Cheesy, yet loyal*

Congrats 0m3GA ARS3NAL! Enjoy your stay in the ROM Raiders team.


I have made even better tiles.. Please accept me..
I know I sound desperate but I would love to be on this team.
[PokeCommunity.com] ROM Raiders

Well, like I said D/P/Pt/HG/SS-like tiles are not really useful to me, and besides, I still haven't seen any overworlds.
 
[PokeCommunity.com] ROM Raiders
Here are the ones I showed ya before.. some more..
Um.. I made some Gold OWs.
I designed these for a freind's hack. I have even more OWs if u want.
[PokeCommunity.com] ROM Raiders

Sorry bout the JPEG, but it was bitmap and ended up as JPEG when uploaded.
 
I hope that aint count as spam but I want to ask if I still can apply for a scripter. I know, in your description it says you need "

  • Music Composers/Remixer
  • Spriters
  • Tile Makers"
So I think, if you aint need scripter or take applications as one, I dont need to post. xD

Edit: Ok HackMew here I go :D

Name: s0n1c
Email: I dont want to post it in publicy^^
MSN: same goes for it(if required or needed please pm me)
Time Zone: GMT +1(I hope thats right, atm its 20:02)
Skills: Scripting and some other stuff(but just some basics..)
Proof of work:
Spoiler:
I guess the text aint need to be translated, cause the script mathers, not whats said in it.^^
Here are some screenshots:
Spoiler:


Past Experience: I had my own hack "Pokemon Destiny to Legend", but I canceled it.(its on an other forum) I also worked/helped at "Haefeles" hack "Pokemon - The Mistery of Celebi".
 
Last edited:
[PokeCommunity.com] ROM Raiders

Here. I made it jus now cause I deleted all my old ones..

Seriously, if you really want to be in you should at least try a bit harder than that.


I hope that aint count as spam but I want to ask if I still can apply for a scripter. I know, in your description it says you need "

  • Music Composers/Remixer
  • Spriters
  • Tile Makers"
So I think, if you aint need scripter or take applications as one, I dont need to post. xD

It won't count as spam if you edit your post to add a joining form.
 
Hmm.. try harder? I would but I am not sure what to sprite, It is hard without inspiration, I'll think of something, I know, Jessie, james and meowth!

Done.. Another that I just did now, It is Jesse and James from team rocket, do you like it?
I know it took a bit long, but it is done.
[PokeCommunity.com] ROM Raiders
 
Last edited:
Back
Top