Author Topic: Crystal Defenders - Cancelled  (Read 16911 times)

0 Members and 1 Guest are viewing this topic.

Offline calc84maniac

  • eZ80 Guru
  • Coder Of Tomorrow
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2912
  • Rating: +471/-17
    • View Profile
    • TI-Boy CE
Re: Progress
« Reply #45 on: April 01, 2010, 08:01:00 am »
Do you mean that when you do this:
Code: [Select]
:[09]->GDB1
:GDB+1->GDB
GDB1 becomes a 10 and not a 0A?
No, it is actually:
Code: [Select]
:[09]->GDB1
:{GDB1}+1->{GDB1}
"Most people ask, 'What does a thing do?' Hackers ask, 'What can I make it do?'" - Pablos Holman

Offline Silver Shadow

  • Beta Tester
  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 817
  • Rating: +27/-7
    • View Profile
Re: Progress
« Reply #46 on: April 01, 2010, 08:05:19 am »
Never mind, I wasn't paying much attention to what I was writing.
So, does it make that a 10 or a 0A?

EDIT:
Actually, it is:
Code: [Select]
:[09]->GDB1
:{GDB1}+1->GDB1
« Last Edit: April 01, 2010, 08:06:32 am by Silver Shadow »
Former Coder of Tomorrow


Offline calc84maniac

  • eZ80 Guru
  • Coder Of Tomorrow
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2912
  • Rating: +471/-17
    • View Profile
    • TI-Boy CE
Re: Progress
« Reply #47 on: April 01, 2010, 08:11:03 am »
Never mind, I wasn't paying much attention to what I was writing.
So, does it make that a 10 or a 0A?

EDIT:
Actually, it is:
Code: [Select]
:[09]->GDB1
:{GDB1}+1->GDB1
That shouldn't even be a legal operation...
"Most people ask, 'What does a thing do?' Hackers ask, 'What can I make it do?'" - Pablos Holman

Offline Silver Shadow

  • Beta Tester
  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 817
  • Rating: +27/-7
    • View Profile
Re: Progress
« Reply #48 on: April 01, 2010, 08:22:59 am »
Really? I suppose I'll go and check it... Once I get my calc out of my bag, since I'm too lazy on such a wonderful afternoon...
Former Coder of Tomorrow


Offline Raylin

  • Godslayer
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1392
  • Rating: +83/-25
  • I am a certifiable squirrel ninja.
    • View Profile
    • Ray M. Perry
Re: Progress
« Reply #49 on: April 01, 2010, 11:15:46 am »
Hmm...

Are you able to do mathematical operations with hexadecimal?
Bug me about my book.

Sarah: TI-83 Plus Silver Edition [OS 1.19]
Cassie: TI-86 [OS 1.XX]
Elizabeth: TI-81 [OS 1.XX]
Jehuty: TI-83 Plus Silver Edition [OS 1.19]
Tesla: CASIO Prizm







Offline calc84maniac

  • eZ80 Guru
  • Coder Of Tomorrow
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2912
  • Rating: +471/-17
    • View Profile
    • TI-Boy CE
Re: Progress
« Reply #50 on: April 01, 2010, 11:25:17 am »
Hmm...

Are you able to do mathematical operations with hexadecimal?
The only thing that is hexadecimal about it is how you type it in. It's just a number.
"Most people ask, 'What does a thing do?' Hackers ask, 'What can I make it do?'" - Pablos Holman

Offline ztrumpet

  • The Rarely Active One
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5712
  • Rating: +364/-4
  • If you see this, send me a PM. Just for fun.
    • View Profile
Re: Progress
« Reply #51 on: April 01, 2010, 03:40:03 pm »
Hmm...

Are you able to do mathematical operations with hexadecimal?
Hex is no different than base 10, except for how it is displayed. :D

Offline Quigibo

  • The Executioner
  • CoT Emeritus
  • LV11 Super Veteran (Next: 3000)
  • *
  • Posts: 2031
  • Rating: +1075/-24
  • I wish real life had a "Save" and "Load" button...
    • View Profile
Re: Progress
« Reply #52 on: April 01, 2010, 03:41:39 pm »
Yeah, hexadecimal doesn't exist if you don't want it to.  You can just think of it as base 10 if you want.  You can even think about it in base 3, or 4, or 255, or 9000, whatever you want!  As long as you understand a number is a number no matter what base you write it in.

This is what you should do if you want to use decimal:
Ξ”List(8,9,10,11,12)->GDB1

Instead of doing this:
[08090A0B0C]->GDB1

They are both identical.


EDIT: and by the way, this is correct:

:{GDB1}+1->{GDB1}

Not any of these:

:{GDB1}+1->GDB1
:GDB1+1->GDB1
:GDB1+1->{GDB1}

The last one is syntactically correct, but it won't do what you're trying to make it do.
« Last Edit: April 01, 2010, 03:46:40 pm by Quigibo »
___Axe_Parser___
Today the calculator, tomorrow the world!

Offline ztrumpet

  • The Rarely Active One
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5712
  • Rating: +364/-4
  • If you see this, send me a PM. Just for fun.
    • View Profile
Re: Progress
« Reply #53 on: April 01, 2010, 03:47:52 pm »
:{GDB1}+1->GDB1
:GDB1+1->GDB1
:GDB1+1->{GDB1}
What would these three do?  *Ztrumpet is curious... :D

Offline calc84maniac

  • eZ80 Guru
  • Coder Of Tomorrow
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2912
  • Rating: +471/-17
    • View Profile
    • TI-Boy CE
Re: Progress
« Reply #54 on: April 01, 2010, 05:37:59 pm »
:{GDB1}+1->GDB1
:GDB1+1->GDB1
:GDB1+1->{GDB1}
What would these three do?  *Ztrumpet is curious... :D
The first two are illegal because GDB1 is a constant pointer. The third one will add one to the constant and store it to {GDB1}
"Most people ask, 'What does a thing do?' Hackers ask, 'What can I make it do?'" - Pablos Holman

Offline Silver Shadow

  • Beta Tester
  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 817
  • Rating: +27/-7
    • View Profile
Re: Progress
« Reply #55 on: April 02, 2010, 02:52:14 pm »
EDIT: I was very upset when I wrote this post. So I really dunno what I'm gonna do.


I am extremely sorry, but due to a recent incident on the forums and on IRC, I am stopping all of my calc projects, including Crysta; Defenders and retiring from Omnimaga staff and calc programming in general.
I apologize, Hot_Dog, but this includes the sprites that I was making for S.A.D. Sorry for letting you down.

If you would like to have details about the incident, just ask DJ Omnimaga.

THIS IS MY LAST POST.
« Last Edit: April 02, 2010, 03:05:17 pm by Silver Shadow »
Former Coder of Tomorrow


Offline Geekboy1011

  • The Oneironaut
  • Donator
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2031
  • Rating: +119/-2
  • Dream that Awakening dream
    • View Profile
Re: [ALL MY PROJECTS ARE NOW STOPPED] Progress
« Reply #56 on: April 02, 2010, 02:58:30 pm »
goodbye silvershadow you will be missed i was looking forward to crystal defenders a lot

im sorry it ended this way but i wish you luck with the rest of life may it be good to you :) and you good to it

Offline Silver Shadow

  • Beta Tester
  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 817
  • Rating: +27/-7
    • View Profile
Re: [ALL MY PROJECTS ARE NOW STOPPED] Progress
« Reply #57 on: April 02, 2010, 03:05:55 pm »
EDIT: Finally, I won't resign or quit calc programming. It's getting late, so I'll come back tomorrow.

I was very upset when I wrote this post. So I really dunno what I'm gonna do.
« Last Edit: April 02, 2010, 03:11:11 pm by Silver Shadow »
Former Coder of Tomorrow


Offline Raylin

  • Godslayer
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1392
  • Rating: +83/-25
  • I am a certifiable squirrel ninja.
    • View Profile
    • Ray M. Perry
Re: [ALL MY PROJECTS ARE NOW STOPPED] Progress
« Reply #58 on: April 02, 2010, 03:12:03 pm »
Uhm.
Momentary relapse? o.O

Welcome back?
Bug me about my book.

Sarah: TI-83 Plus Silver Edition [OS 1.19]
Cassie: TI-86 [OS 1.XX]
Elizabeth: TI-81 [OS 1.XX]
Jehuty: TI-83 Plus Silver Edition [OS 1.19]
Tesla: CASIO Prizm







Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55943
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: [ALL MY PROJECTS ARE NOW STOPPED] Progress
« Reply #59 on: April 02, 2010, 06:18:41 pm »
I think this issue has been resolved, altough I am still trying to work some things out via PM.

I am sorry for anything bad I caused regarding this.