Difference between revisions of "Chotokukyan"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 5: | Line 5: | ||
**Return Locations in Battle.Bin | **Return Locations in Battle.Bin | ||
**Jump command links in SCUS and Battle.bin | **Jump command links in SCUS and Battle.bin | ||
− | *Flan | + | *Sprites: |
+ | **Flan | ||
+ | **Nocturned based sprite | ||
+ | **Hoplite | ||
+ | **Gate | ||
+ | **Chest | ||
+ | *ASM | ||
+ | **Test Formula Hack (if not already done) | ||
+ | **Test elemental hack (if not already done) | ||
+ | |||
+ | |||
+ | private void button1_Click(object sender, EventArgs e) | ||
+ | { | ||
+ | WebClient client = new WebClient(); | ||
+ | string reply = client.DownloadString(AddressBox.Text); | ||
+ | ReplyBox.Text = reply; | ||
+ | reply = reply.Substring(reply.IndexOf("[[")); | ||
+ | } |
Latest revision as of 14:42, 24 December 2014
My page :D
To Do:
- Wiki
- Return Locations in Battle.Bin
- Jump command links in SCUS and Battle.bin
- Sprites:
- Flan
- Nocturned based sprite
- Hoplite
- Gate
- Chest
- ASM
- Test Formula Hack (if not already done)
- Test elemental hack (if not already done)
private void button1_Click(object sender, EventArgs e) { WebClient client = new WebClient(); string reply = client.DownloadString(AddressBox.Text); ReplyBox.Text = reply; reply = reply.Substring(reply.IndexOf("[[")); }