Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 ... 60 61 [62] 63 64 ... 166

Author Topic: Pokemon Orthoclase & Microcline: Back to work!  (Read 152596 times)

Reudh

  • Bay Watcher
  • Perge scelus mihi diem perficias.
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #915 on: February 01, 2012, 05:19:01 pm »

Uhm, guys, the starting bit is broken. You can't choose any BayOmon. Boatborn's just says "This is a BayOrb! It contains a BayOMon!", Perlihorn's shows an image of perlihorn which doesn't go away, and uncarp's just plays the cry.

Darvi

  • Bay Watcher
  • <Cript> Darvi is my wifi.
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #916 on: February 01, 2012, 05:21:43 pm »

Weird. Should work. I'll look through it.

Uh, how do I use git again....
Logged

Deadmeat1471

  • Bay Watcher
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #917 on: February 01, 2012, 05:26:54 pm »

Uhm, guys, the starting bit is broken. You can't choose any BayOmon. Boatborn's just says "This is a BayOrb! It contains a BayOMon!", Perlihorn's shows an image of perlihorn which doesn't go away, and uncarp's just plays the cry.

I have this problem too. Fucking ponies.
Logged

GlyphGryph

  • Bay Watcher
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #918 on: February 01, 2012, 05:28:53 pm »

Well, that sounds like negative progress. I'll roll it back to the last working version when I get the chance, I suppose.
Logged

Darvi

  • Bay Watcher
  • <Cript> Darvi is my wifi.
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #919 on: February 01, 2012, 05:29:39 pm »

Okay, I see. I'll try and fix it.

Shit, I haven't done anything in a month and now I don't know how to do anything anymore.
« Last Edit: February 01, 2012, 05:32:06 pm by Darvi »
Logged

Darvi

  • Bay Watcher
  • <Cript> Darvi is my wifi.
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #920 on: February 01, 2012, 06:12:39 pm »

Good news: I found the error (a bunch of =='s were turned into 0x7f's for some reason).

Status has changed from fuxed to fixed.

Shit how do I upload this stuff.
« Last Edit: February 01, 2012, 06:17:21 pm by Darvi »
Logged

USEC_OFFICER

  • Bay Watcher
  • Pulls the strings and makes them ring.
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #921 on: February 01, 2012, 06:19:48 pm »

Good news: I found the error (a bunch of =='s were turned into 0x7f's for some reason).

Status has changed from fuxed to fixed.

Shit how do I upload this stuff.

Code: [Select]
git add .
git commit -m 'TEST'
git push origin master

Try that (though with something else besides TEST).
Logged

Reudh

  • Bay Watcher
  • Perge scelus mihi diem perficias.
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #922 on: February 01, 2012, 06:30:20 pm »

Sweet! Darvi you did it again! :D


I'ma fire up this badboy now. Let's see how it goes now with the new scripts in. :D

mr. macduggan

  • Bay Watcher
  • HEY! LISTEN! HEY! HEY! LISTEN!
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #923 on: February 01, 2012, 06:37:33 pm »

I just tried it again a moment ago, and the rom is still broken. I don't know if the official changes have been made yet though.
Logged
Flooding the area with magma removes blood, dust, vomit, goo, mud, and dwarves.
Also, I'm composing digital music over in the Forum Games part of the forums!

Darvi

  • Bay Watcher
  • <Cript> Darvi is my wifi.
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #924 on: February 01, 2012, 06:42:56 pm »

I have yet to make any progress in making sense of git :V
Logged

USEC_OFFICER

  • Bay Watcher
  • Pulls the strings and makes them ring.
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #925 on: February 01, 2012, 06:45:41 pm »

I have yet to make any progress in making sense of git :V

You and me both.
Logged

Reudh

  • Bay Watcher
  • Perge scelus mihi diem perficias.
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #926 on: February 01, 2012, 06:47:41 pm »

Yeah I think Darvi hasn't pushed the changes yet. :3

We wait with bated breath! :D

mr. macduggan

  • Bay Watcher
  • HEY! LISTEN! HEY! HEY! LISTEN!
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #927 on: February 01, 2012, 06:52:03 pm »

I spent like an hour hashing it out last night with GlyphGryph, and I eventually understood it.
The trick is you need to set up an account first (follow the instructions on the github homepage when you create a new account)


Then the sequence of commands into the gitbash client should be


git clone git://github.com/GlyphGryph/Bay12Pokemon NAMEOFFOLDERYOUWANTTHEPROJECTTOAPPEARIN


then you make any adjustments to the rom or sprites or whatever the way you would if it was a local project (your named folder should appear in your user folder if you use windows) , then

cd YOURFOLDERNAMEHERE

git add . (this adds all the changes you made to the main folder and all folders beneath it to your change list for the update you create)


git commit -m "WHAT YOU CHANGED WITH YOUR UPDATE" (-m means append a message to the change you made, do it)


and finally


git push


this is how I managed to put my sprites into the git last night anyway. (not into the rom, but the folder with all our content)
« Last Edit: February 01, 2012, 06:53:42 pm by mr. macduggan »
Logged
Flooding the area with magma removes blood, dust, vomit, goo, mud, and dwarves.
Also, I'm composing digital music over in the Forum Games part of the forums!

Darvi

  • Bay Watcher
  • <Cript> Darvi is my wifi.
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #928 on: February 01, 2012, 06:54:20 pm »

Did all that before I even started with complaining.
Logged

mr. macduggan

  • Bay Watcher
  • HEY! LISTEN! HEY! HEY! LISTEN!
    • View Profile
Re: Pokemon Orthoclase & Microcline: Striking the ROM! (In a productive way)
« Reply #929 on: February 01, 2012, 06:57:01 pm »

Ok, sorry to assume that you are as nooby as me, darvi  :P
it took me a while to figure all of that out.
Logged
Flooding the area with magma removes blood, dust, vomit, goo, mud, and dwarves.
Also, I'm composing digital music over in the Forum Games part of the forums!
Pages: 1 ... 60 61 [62] 63 64 ... 166