Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Hayleia

Pages: 1 ... 203 204 [205] 206 207 ... 239
3061
TI Z80 / Re: Pokemon Topaze (Axe)
« on: October 28, 2011, 03:03:53 pm »
screenies are cool...
Wait. Are you saying that my outdated screenshots are cool or are you asking for more screenshots ? :P

edit: made an userbar in pieces


the code:
[url=http://ourl.ca/12441/233823][img]http://www.omnimaga.org/index.php?action=dlattach;topic=9844.0;attach=10937;image[/img][img]http://www.omnimaga.org/index.php?action=dlattach;topic=9844.0;attach=10938;image[/img][img]http://www.omnimaga.org/index.php?action=dlattach;topic=9844.0;attach=10939;image[/img][/url]

3062
[FR] Programmation Axe Parser / Re: output n'affiche rien
« on: October 28, 2011, 10:14:55 am »
merci pour ta réponse rapide =)
De rien :)

Mais ça entraine une autre question : comment les programmeurs font lorsqu'ils ne savent pas si la valeur a afficher sera plutôt grande (12345) ou petite (12) ?
Dans mon cas, j'utilise toujours Text au lieu de Output. Et pour utiliser la grande police avec Text, on utilise Fix 1. Du coup, si tu mets:
   Fix 1
   Text(X,Y,242>Dec)
   Fix 0

Le programme affichera 242 en (X,Y), et pas en (X+2,Y), et ce en grande police, comme si tu avais utilisé Output. Le Fix 0 après sert juste à remettre Text en mode petite police, Mais si tu a plusieurs chiffres à afficher, mets les avant le Fix 0 (ou ne mets pas de Fix 0).
Attention néanmoins, Text ne prend pas des valeurs de X et Y comprises entre 0 et 7, mais entre 0 et 58 pour X, et 0 et ~80 pour Y (j'ai oublié la borne supérieure pour Y).

3063
[FR] Programmation Axe Parser / Re: output n'affiche rien
« on: October 28, 2011, 09:52:37 am »
Tout d'abord, bienvenue sur omnimaga ! Tu peux te présenter (en anglais) par ici

[EDIT2] Apres quelques tests j'ai decouvert que lorsque OutPut affichais un nombre et non un texte celui-ci etais toujours decalé de 4 vers la droite. Quelqu'un peut m'expliquer pourquoi ?
IIRC, c'est à cause de la routine DispHL. Tout nombre de 16 bits est compris entre 0 et 65535, et comprend donc moins de 5 chiffres. Lorsque tu l'affiche avec Output(X,Y,A>Dec), il le place dans un bloc de 5 cases qui commence à (X,Y). En d'autres mots, si tu affiches 10000, il sera affiché au bon endroit. 1000 sera décalé d'un carreau, etc.

Pour le reste, je ne sais pas :-/
Est-tu sûr d'avoir mis Output(X,Y et pas Output(Y,X , avec X et Y compris entre 0 et 7 ?

3064
TI Z80 / Re: Pokemon Topaze (Axe)
« on: October 28, 2011, 09:40:15 am »
and another bug with the old version: not sure if it was fixed in the update:
I had a newly evolved lvl. 37 Charizard.
I used a potion on it, and then I got an 'evolve' message.
I ended up with a lvl. 37 Squirtle instead(maybe because squirtle was the last pokemon I had battled.
or squirtle is the next pokemon number in the array.
Ah. Yeah. I forgot about that one. It also can happen when you use an object just after launching the game. Some variables are not correctly reinitialised. Gotta fix that soon.
You are lucky, it is not a Charizard that evolved in a Magikarp during 5 minutes or so :P

EDIT: UPDATE:
That bug is (should be) fixed, without even adding any line to the code :D I only had to put something somewhere else.

3065
Miscellaneous / Re: So what is everyone up to?
« on: October 28, 2011, 03:54:26 am »
you got married? O.O
It was in her signature but she changed it, it seems.

...life; the usual.
"life". What a non obvious answer XD

3066
TI Z80 / Re: Pokemon Topaze (Axe)
« on: October 28, 2011, 03:45:53 am »
it looks amazing!
What are you talking about ?


Ok I have good news and bad news.

Bad news:
Turiqwalrus, I have no idea where this bug come from ???
I thought I had some kind of
  For(r1,0,5)
   ...
   1→r1
   ...
   End

(in less obvious) but I didn't find anything like that. Sorry :-\

Good news: UPDATE :w00t:
(I'll just call it 1.0.0, because if I start at 2.0.5, people will wonder where are the others)

-Wait for no key pressed routine added, for a more comfortable use

-Blinking cursor added sometimes, in battle, for example after "The opponent is going to send" so you have to accept before changing your Pokemon. You can't miss what Pokemon he is going to send ;D, even if you were talking to someone during playing (you found someone that is more interesting that my game ???)

-And the most important: I entirely rewrote the thing so the text is in a separated file !
You'll say "I don't care". I'll say "You do".
Why ? Because if you are Spanish or German, you can translate the file (included in the zip, in English and in French), then posting it here and I could compile a German or a Spanish version of the game :D
Beware though, never put any accent on any letter (é è ê ë ñ õ etc are not accepted).



EDIT: The download count is a lie: I already downloaded it twice so I can test the download link ;D

3067
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: October 27, 2011, 03:26:25 pm »
2297: You impress people by making games
I even impress the guys of my class by putting axes back on the graph of their TI-82 Stats.fr D:

3068
TI Z80 / Re: Croquette IDE
« on: October 27, 2011, 12:13:26 pm »
Sorry for double posting, but I felt like it was important (if you think that no, tell me and I'll use the edit button).
I found the origin of the bug :w00t:
It comes from the ".       DIVERS" line.
Before the "DIVERS", and after the ".", I used several tabulations.
When I replace them with spaces, it compiles.
If I used several tabulations at the beginning of a line, it is works, but not between two characters it seems.

3069
TI Z80 / Re: Croquette IDE
« on: October 27, 2011, 10:18:21 am »
Could you try deleting lines from the end until you get it to work then post which lines work and which ones you had to remove?
OK, I'll try, but I don't have a lot of time either :(, so my answer may come a long time after.

3070
TI Z80 / Re: Croquette IDE
« on: October 27, 2011, 08:01:48 am »
Ok:
Copy the text in the spoiler into a .txt file.
Then, try to compile it into a .8xp file:
-You can drag and drop it into TIConvert 0.5.1
Expected: it displays a command prompt during 2 secs then closes it and a 8xp file appears.
What happens: the command prompt appears and blinks, and never closes.
-Else, you can double click Croquette, copy paste the text into it and save it.
Expected: the 8xp file appears.
What happens: it freezes when you accept saving, after entering the name of the file you want to create.

3071
TI Z80 / Re: Croquette IDE
« on: October 27, 2011, 02:37:59 am »
That doesn't answer my question :P
Yay ! Quoting myself

Bump ;D
Okay, I have a stupid bug.
This text, in the spoiler, in a .txt file, doesn't want to be converted.
I tried to copy/paste it into Croquette and save it; it freezes. D:
I tried to drag/drop it into TI Convert 0.5.1; it shows a blinking cursor on the command prompt. :(
When I delete all from ".      DIVERS", it works (but the file is obviously not complete -.-°)
What to do ?
Spoiler For Spoiler:
.NOMS
.                  POKEMONS
"Bulbizarre"[00]->GDB2
"Herbizarre"[00]
"Florizarre"[00]
"Salameche"[00]
"Reptincel"[00]
"Dracaufeu"[00]
"Carapuce"[00]
"Carabaffe"[00]
"Tortank"[00]
"Chenipan"[00]
"Chrysacier"[00]
"Papilusion"[00]
"Roucool"[00]
"Roucoups"[00]
"Roucarnage"[00]
"Pikachu"[00]
"Raichu"[00]
"NidoranF"[00]
"Nidoqueen"[00]
"NidoranM"[00]
"Nidoking"[00]
"Nosferapti"[00]
"Nosferalto"[00]
"Mystherbe"[00]
"Rafflesia"[00]
"Taupiqueur"[00]
"Triopikeur"[00]
"Miaouss"[00]
"Persian"[00]
"Abra"[00]
"Kadabra"[00]
"Machoc"[00]
"Machopeur"[00]
"Mackogneur"[00]
"Racaillou"[00]
"Gravalanch"[00]
"Fantominus"[00]
"Spectrum"[00]
"Ectoplasma"[00]
"Magicarpe"[00]
"Leviator"[00]
"Rattata"[00]
"Rattatac"[00]
"Onix"[00]

.                     ATTAQUES
"Charge"[00]->GDB3
"Griffe"[00]
"Morsure"[00]
"Metronome"[00]
"Tranche"[00]
"Ultralaser"[00]
"Ecume"[00]
"Pistolet a O"[00]
"Coud Krane"[00]
"Hydrocanon"[00]
"Flammeche"[00]
"Frenesie"[00]
"Lance Flamme"[00]
"Danseflamme"[00]
"Eclair"[00]
"Vive Attaque"[00]
"Souplesse"[00]
"Tonnerre"[00]
"Fatal Foudre"[00]
"Poing Karate"[00]
"Balayage"[00]
"Frappe Atlas"[00]
"Fouet Lianes"[00]
"Tranch Herbe"[00]
"Lance Soleil"[00]
"Choc Mental"[00]
"Ecras Face"[00]
"Rafale Psy"[00]
"Meteores"[00]
"Psyko"[00]
"Tornade"[00]
"Picpic"[00]
"Cru Aile"[00]
"Vol"[00]
"Lechouille"[00]
"Tenebres"[00]
"Devoreve"[00]
"Jet Pierres"[00]
"Tunnel"[00]
"Seisme"[00]
.                       TYPES
"Normal"[00]->GDB4
"Eau"[00]
"Feu"[00]
"Elektrik"[00]
"Combat"[00]
"Plante"[00]
"Psychique"[00]
"Vol"[00]
"Spectre"[00]
"Roche Sol"[00]
.                       BOSS
"Pierre"[00]->GDB5
"Major Bob"[00]
"Erika"[00]
"Giovanni"[00]
"Olga"[00]
"Aldo"[00]
"Agatha"[00]
"Peter"[00]
.                       PANNEAUX
"Jadielle"[00]->GDB1P
"Argenta"[00]
"Carmin sur Mer"[00]
"Celadopole"[00]

.                  DIVERS
"La progression sera sauvee"[00]->Str11
"Continuer ?"[00]->Str12
"Equipe"[00]->Str13
"Boite"[00]->Str14
"niv"[00]->Str15
"Pkmn"[00]->Str16
"Relacher"[00]->Str17
"Etes vous sur ?"[00]->Str18
"Achat Vente"[00]->Str19
"Potions"[00]->Str20
"Elixir"[00]->Str21
"Pokeballs"[00]->Str22
"sous:                    "[00]->Str23
"Vos Pokemons sont gueris."[00]->Str24
"A bientot !"[00]->Str25
"Pokedex"[00]->Str26
"Pokemon"[00]->Str27
"0bjet"[00]->Str28
"Joueur"[00]->Str29
"Sauver"[00]->Str30
"0ption"[00]->Str31
"Retour"[00]->Str32
"Sauvegarde..."[00]->Str33

"Un "[00]->Str34
"Quelqu'un"[00]->Str35
"veut se battre !"[00]->Str36
"A l' attaque !"[00]->Str37
" "[00]->Str38
"C' est tres efficace !"[00]->Str39
"Ce n' est pas tres efficace..."[00]->Str40
"gagne "[00]->Str41
"points EXP"[00]->Str42
"a monte d' un niveau !"[00]->Str43
" veut"[00]->Str44
"apprendre "[00]->Str45
"Quel emplacement ?"[00]->Str46
"Etes-vous sur ?"[00]->Str47
"L'adversaire va envoyer"[00]->Str48
"L' adversaire utilise"[00]->Str49
"Metronome"[00]->Str50
"1:Attaquer"[00]->Str51
"2:Pokemons"[00]->Str52
"3:Inventaire"[00]->Str53
"4:Fuite"[00]->Str54
"Charge"[00]->Str55
"--"[00]->Str56
"Vous utilisez"[00]->Str57
"Vous prenez la fuite !"[00]->Str58
"Fuite impossible !"[00]->Str59
"L' adversaire est battu."[00]->Str60
"Vous empochez 500 sous."[00]->Str61
"Vous gagnez un badge !"[00]->Str62
"Inventaire"[00]->Str63
"Utiliser"[00]->Str64
"1:Potion"[00]->Str65
"2:Elixir"[00]->Str66
"3:Pokeballs"[00]->Str67
"("[00]->Str68
")    "[00]->Str69
"Impossible"[00]->Str70
"Les boites sont pleines."[00]->Str71
"Capture ! Le Pokemon est"[00]->Str72
" stocke dans la boite."[00]->Str73
"Flute ! Manque !"[00]->Str74
"Vous avez perdu le combat."[00]->Str75
"Vous donnez 400 sous."[00]->Str76
"            "[00]->Str77
"Hein ? "[00]->Str78
"evolue !?!"[00]->Str79
"Alpha pour empecher"[00]->Str80
"n'evolue plus !?!"[00]->Str81
"Nom"[00]->Str82

3072
TI Z80 / Re: Croquette IDE
« on: October 26, 2011, 10:32:53 am »
Bump ;D
Okay, I have a stupid bug.
This text, in the spoiler, in a .txt file, doesn't want to be converted.
I tried to copy/paste it into Croquette and save it; it freezes. D:
I tried to drag/drop it into TI Convert 0.5.1; it shows a blinking cursor on the command prompt. :(
When I delete all from ".      DIVERS", it works (but the file is obviously not complete -.-°)
What to do ?
Spoiler For Spoiler:
.NOMS
.                  POKEMONS
"Bulbizarre"[00]->GDB2
"Herbizarre"[00]
"Florizarre"[00]
"Salameche"[00]
"Reptincel"[00]
"Dracaufeu"[00]
"Carapuce"[00]
"Carabaffe"[00]
"Tortank"[00]
"Chenipan"[00]
"Chrysacier"[00]
"Papilusion"[00]
"Roucool"[00]
"Roucoups"[00]
"Roucarnage"[00]
"Pikachu"[00]
"Raichu"[00]
"NidoranF"[00]
"Nidoqueen"[00]
"NidoranM"[00]
"Nidoking"[00]
"Nosferapti"[00]
"Nosferalto"[00]
"Mystherbe"[00]
"Rafflesia"[00]
"Taupiqueur"[00]
"Triopikeur"[00]
"Miaouss"[00]
"Persian"[00]
"Abra"[00]
"Kadabra"[00]
"Machoc"[00]
"Machopeur"[00]
"Mackogneur"[00]
"Racaillou"[00]
"Gravalanch"[00]
"Fantominus"[00]
"Spectrum"[00]
"Ectoplasma"[00]
"Magicarpe"[00]
"Leviator"[00]
"Rattata"[00]
"Rattatac"[00]
"Onix"[00]

.                     ATTAQUES
"Charge"[00]->GDB3
"Griffe"[00]
"Morsure"[00]
"Metronome"[00]
"Tranche"[00]
"Ultralaser"[00]
"Ecume"[00]
"Pistolet a O"[00]
"Coud Krane"[00]
"Hydrocanon"[00]
"Flammeche"[00]
"Frenesie"[00]
"Lance Flamme"[00]
"Danseflamme"[00]
"Eclair"[00]
"Vive Attaque"[00]
"Souplesse"[00]
"Tonnerre"[00]
"Fatal Foudre"[00]
"Poing Karate"[00]
"Balayage"[00]
"Frappe Atlas"[00]
"Fouet Lianes"[00]
"Tranch Herbe"[00]
"Lance Soleil"[00]
"Choc Mental"[00]
"Ecras Face"[00]
"Rafale Psy"[00]
"Meteores"[00]
"Psyko"[00]
"Tornade"[00]
"Picpic"[00]
"Cru Aile"[00]
"Vol"[00]
"Lechouille"[00]
"Tenebres"[00]
"Devoreve"[00]
"Jet Pierres"[00]
"Tunnel"[00]
"Seisme"[00]
.                       TYPES
"Normal"[00]->GDB4
"Eau"[00]
"Feu"[00]
"Elektrik"[00]
"Combat"[00]
"Plante"[00]
"Psychique"[00]
"Vol"[00]
"Spectre"[00]
"Roche Sol"[00]
.                       BOSS
"Pierre"[00]->GDB5
"Major Bob"[00]
"Erika"[00]
"Giovanni"[00]
"Olga"[00]
"Aldo"[00]
"Agatha"[00]
"Peter"[00]
.                       PANNEAUX
"Jadielle"[00]->GDB1P
"Argenta"[00]
"Carmin sur Mer"[00]
"Celadopole"[00]

.                  DIVERS
"La progression sera sauvee"[00]->Str11
"Continuer ?"[00]->Str12
"Equipe"[00]->Str13
"Boite"[00]->Str14
"niv"[00]->Str15
"Pkmn"[00]->Str16
"Relacher"[00]->Str17
"Etes vous sur ?"[00]->Str18
"Achat Vente"[00]->Str19
"Potions"[00]->Str20
"Elixir"[00]->Str21
"Pokeballs"[00]->Str22
"sous:                    "[00]->Str23
"Vos Pokemons sont gueris."[00]->Str24
"A bientot !"[00]->Str25
"Pokedex"[00]->Str26
"Pokemon"[00]->Str27
"0bjet"[00]->Str28
"Joueur"[00]->Str29
"Sauver"[00]->Str30
"0ption"[00]->Str31
"Retour"[00]->Str32
"Sauvegarde..."[00]->Str33

"Un "[00]->Str34
"Quelqu'un"[00]->Str35
"veut se battre !"[00]->Str36
"A l' attaque !"[00]->Str37
" "[00]->Str38
"C' est tres efficace !"[00]->Str39
"Ce n' est pas tres efficace..."[00]->Str40
"gagne "[00]->Str41
"points EXP"[00]->Str42
"a monte d' un niveau !"[00]->Str43
" veut"[00]->Str44
"apprendre "[00]->Str45
"Quel emplacement ?"[00]->Str46
"Etes-vous sur ?"[00]->Str47
"L'adversaire va envoyer"[00]->Str48
"L' adversaire utilise"[00]->Str49
"Metronome"[00]->Str50
"1:Attaquer"[00]->Str51
"2:Pokemons"[00]->Str52
"3:Inventaire"[00]->Str53
"4:Fuite"[00]->Str54
"Charge"[00]->Str55
"--"[00]->Str56
"Vous utilisez"[00]->Str57
"Vous prenez la fuite !"[00]->Str58
"Fuite impossible !"[00]->Str59
"L' adversaire est battu."[00]->Str60
"Vous empochez 500 sous."[00]->Str61
"Vous gagnez un badge !"[00]->Str62
"Inventaire"[00]->Str63
"Utiliser"[00]->Str64
"1:Potion"[00]->Str65
"2:Elixir"[00]->Str66
"3:Pokeballs"[00]->Str67
"("[00]->Str68
")    "[00]->Str69
"Impossible"[00]->Str70
"Les boites sont pleines."[00]->Str71
"Capture ! Le Pokemon est"[00]->Str72
" stocke dans la boite."[00]->Str73
"Flute ! Manque !"[00]->Str74
"Vous avez perdu le combat."[00]->Str75
"Vous donnez 400 sous."[00]->Str76
"            "[00]->Str77
"Hein ? "[00]->Str78
"evolue !?!"[00]->Str79
"Alpha pour empecher"[00]->Str80
"n'evolue plus !?!"[00]->Str81
"Nom"[00]->Str82

3073
Axe / Re: [Tutorial] Edition 2: Using Axe to its full functional form λ
« on: October 26, 2011, 07:40:48 am »
RAM clears. Dude, story of my life. Back up your work - I had to learn the really hard way.
Also, Axe can compile even if the source is archived, so archive it :)

3074
The Axe Parser Project / Re: Which Axe version do you use?
« on: October 24, 2011, 12:10:55 pm »
Right, but only for specific buffers - and due to the lack of them in 0.5.3 I won't have to change anything... I think.
And how do these specific buffers work? These are L6 (main), L3 (back) and L1, right?
no, L1 is not a buffer, just a free ram area. But "L6 (main), L3 (back)" is right (or maybe it is the contrary XD)
If you only used "DispGraph", you can upgrade. If you used "GDB1→DispGraph", there might be a problem.

Strangely enough, I still have 0.4.6 installed on my calculator because it's been so long since I last programmed o_O
Upgrade and start coding again, it's so much fun :D (this is not an order, you can do whatever you want in fact)

3075
TI Z80 / Re: zStart - an app that runs on ram clears
« on: October 24, 2011, 12:03:08 pm »
I was just about to request that as a feature.... :)
:w00t: first time I ninja someone !!!

Let's see which one does it first: DCS7 or zStart XD
The problem is not who does it first, because Xeda can do it by herself. The problem are the conflicts there will be. And as (in my case) I prefer zStart's hooks, I'd like it to run Grammer progs.

Pages: 1 ... 203 204 [205] 206 207 ... 239