Saran2005-10-31 04:56:39
I want to write something in zMUD so that when i check someone's nativity it will add what effect the astrology rays would have on them.
if possible modifying my buttons so that they show the effect instead of the rays name
if possible modifying my buttons so that they show the effect instead of the rays name
Saran2005-10-31 06:31:38
Ok, now i've got a button which checks the nativity of my target then activates triggers which echo the effect (for some reason aapek is the only one that doesn't refer to a sign using "the")
is there any way to do the button thing or make it so the affliction appears on the same line as the line the trigger reads?
is there any way to do the button thing or make it so the affliction appears on the same line as the line the trigger reads?
Corr2005-10-31 07:11:00
#SUB command.
For example.. #SUB Bumblebee @beeaffect
Make sure you turn off said triggers when finish looking at the nativity, also make sure the substitutions are kept in the proper class.
For example.. #SUB Bumblebee @beeaffect
Make sure you turn off said triggers when finish looking at the nativity, also make sure the substitutions are kept in the proper class.
Saran2005-10-31 07:45:44
so what...
#IF (%1 Â = Volcano OR %1 = Dolphin OR %1 = Burning OR %1 = Skull) {
#SUB Ego Down} Â {
#IF (%1 = Antlers OR %1 = Lion OR %1 = Spider OR %1 = Bumblebee) {
#SUB Health Down} {
#IF (%1 = Twin OR %1 = Crocodile OR %1 = Dragon OR %1 = Glacier) {
#SUB Mana Down}
}
}
CODE
#IF (%1 Â = Volcano OR %1 = Dolphin OR %1 = Burning OR %1 = Skull) {
#SUB Ego Down} Â {
#IF (%1 = Antlers OR %1 = Lion OR %1 = Spider OR %1 = Bumblebee) {
#SUB Health Down} {
#IF (%1 = Twin OR %1 = Crocodile OR %1 = Dragon OR %1 = Glacier) {
#SUB Mana Down}
}
}
Saran2005-10-31 09:12:24
anyway to change the label on a button?
Nayl2005-10-31 10:09:14
When I get my zmud up again (Laptop with wireless crashed), I'll put mine up, does the same thing, and has buttons with like Eroee gives dizzy, and so on.
Saran2005-10-31 10:23:19
*smiles*
we'll as i said cause it's for battle i've linked it all to my target i click a button that activates all the triggers they all fire and sub the lines with (planet) is in (sign). Gives (blah) then decativate. below that button are different ones of each ray
we'll as i said cause it's for battle i've linked it all to my target i click a button that activates all the triggers they all fire and sub the lines with (planet) is in (sign). Gives (blah) then decativate. below that button are different ones of each ray
Unknown2005-10-31 13:43:34
QUOTE(Saran @ Oct 31 2005, 03:45 AM)
so what...
#IF (%1 Â = Volcano OR %1 = Dolphin OR %1 = Burning OR %1 = Skull) {
#SUB Ego Down} Â {
#IF (%1 = Antlers OR %1 = Lion OR %1 = Spider OR %1 = Bumblebee) {
#SUB Health Down} {
#IF (%1 = Twin OR %1 = Crocodile OR %1 = Dragon OR %1 = Glacier) {
#SUB Mana Down}
}
}
CODE
#IF (%1 Â = Volcano OR %1 = Dolphin OR %1 = Burning OR %1 = Skull) {
#SUB Ego Down} Â {
#IF (%1 = Antlers OR %1 = Lion OR %1 = Spider OR %1 = Bumblebee) {
#SUB Health Down} {
#IF (%1 = Twin OR %1 = Crocodile OR %1 = Dragon OR %1 = Glacier) {
#SUB Mana Down}
}
}
214912
You could simplify that a little with %ismember.
CODE
#if (%ismember(%1, "Volcano|Dolphin|Burning|Skull")) {#sub Ego Down}
Saran2005-10-31 15:46:20
thanks, ugh i'm such a newbie to zMUD
Ekard2005-11-03 23:22:47
I have one ready if you like.
It have a lot of #if but i did it fast and didnt optimized it, but it works perfect.
#CLASS {Offense|Celestine|Astrology|Nativity}
#TRIGGER {^ Sun was in the sign of the (*).$} {
#if %1="Volcano" {#sub {%ansi(7) Sun was in the sign of the %1. - FIRE DAMAGE }}
#if %1="Antlers" {#sub {%ansi(7) Sun was in the sign of the %1. - CUTTING DAMAGE }}
#if (%1)="Twin Crystals" {#sub {%ansi(7) Sun was in the sign of the %1. - PSYCHIC DAMAGE }}
#if %1="Dolphin" {#sub {%ansi(7) Sun was in the sign of the %1. - COLD DAMAGE }}
#if %1="Lion" {#sub {%ansi(7) Sun was in the sign of the %1. - CUTTING DAMAGE }}
#if %1="Crocodile" {#sub {%ansi(7) Sun was in the sign of the %1. - ASPHYXIATION DAMAGE }}
#if (%1)="Burning Censer" {#sub {%ansi(7) Sun was in the sign of the %1. - ASPHYXIATION DAMAGE }}
#if %1="Spider" {#sub {%ansi(7) Sun was in the sign of the %1. - POISON DAMAGE }}
#if %1="Dragon" {#sub {%ansi(7) Sun was in the sign of the %1. - FIRE DAMAGE }}
#if %1="Skull" {#sub {%ansi(7) Sun was in the sign of the %1. - BLUNT DAMAGE }}
#if %1="Bumblebee" {#sub {%ansi(7) Sun was in the sign of the %1. - POISON DAMAGE }}
#if %1="Glacier" {#sub {%ansi(7) Sun was in the sign of the %1. - COLD DAMAGE }}
}
#TRIGGER {^ Moon was in the sign of the (*).$} {
#if (%1)="Volcano" {#sub {%ansi(7) Moon was in the sign of the %1. - HALLUCINATE }}
#if (%1)="Dolphin" {#sub {%ansi(7) Moon was in the sign of the %1. - HALLUCINATE }}
#if (%1)="Burning Censer" {#sub {%ansi(7) Moon was in the sign of the %1. - HALLUCINATE }}
#if (%1)="Skull" {#sub {%ansi(7) Moon was in the sign of the %1. - HALLUCINATE }}
#if (%1)="Antlers" {#sub {%ansi(7) Moon was in the sign of the %1. - DIZZINESS }}
#if (%1)="Lion" {#sub {%ansi(7) Moon was in the sign of the %1. - DIZZINESS }}
#if (%1)="Spider" {#sub {%ansi(7) Moon was in the sign of the %1. - DIZZINESS }}
#if (%1)="Bumblebee" {#sub {%ansi(7) Moon was in the sign of the %1. - DIZZINESS }}
#if (%1)="Twin Crystals" {#sub {%ansi(7) Moon was in the sign of the %1. - DEMENTIA }}
#if (%1)="Crocodile" {#sub {%ansi(7) Moon was in the sign of the %1. - DEMENTIA }}
#if (%1)="Dragon" {#sub {%ansi(7) Moon was in the sign of the %1. - DEMENTIA }}
#if (%1)="Glacier" {#sub {%ansi(7) Moon was in the sign of the %1. - DEMENTIA }}
}
#TRIGGER {^ Sidiak was in the sign of the (*).$} {
#if (%1)="Volcano" {#sub {%ansi(7) Sidiak was in the sign of the %1. - STUPIDITY }}
#if (%1)="Dolphin" {#sub {%ansi(7) Sidiak was in the sign of the %1. - STUPIDITY }}
#if (%1)="Burning Censer" {#sub {%ansi(7) Sidiak was in the sign of the %1. - STUPIDITY }}
#if (%1)="Skull" {#sub {%ansi(7) Sidiak was in the sign of the %1. - STUPIDITY }}
#if (%1)="Antlers" {#sub {%ansi(7) Sidiak was in the sign of the %1. - AMNESIA }}
#if (%1)="Lion" {#sub {%ansi(7) Sidiak was in the sign of the %1. - AMNESIA }}
#if (%1)="Spider" {#sub {%ansi(7) Sidiak was in the sign of the %1. - AMNESIA }}
#if (%1)="Bumblebee" {#sub {%ansi(7) Sidiak was in the sign of the %1. - AMNESIA }}
#if (%1)="Twin Crystals" {#sub {%ansi(7) Sidiak was in the sign of the %1. - CONFUSION }}
#if (%1)="Crocodile" {#sub {%ansi(7) Sidiak was in the sign of the %1. - CONFUSION }}
#if (%1)="Dragon" {#sub {%ansi(7) Sidiak was in the sign of the %1. - CONFUSION }}
#if (%1)="Glacier" {#sub {%ansi(7) Sidiak was in the sign of the %1. - CONFUSION }}
}
#TRIGGER {^ Eroee was in the sign of the (*).$} {
#if (%1)="Volcano" {#sub {%ansi(7) Eroee was in the sign of the %1. - JUSTICE }}
#if (%1)="Dolphin" {#sub {%ansi(7) Eroee was in the sign of the %1. - JUSTICE }}
#if (%1)="Burning Censer" {#sub {%ansi(7) Eroee was in the sign of the %1. - JUSTICE }}
#if (%1)="Skull" {#sub {%ansi(7) Eroee was in the sign of the %1. - JUSTICE }}
#if (%1)="Antlers" {#sub {%ansi(7) Eroee was in the sign of the %1. - PEACE }}
#if (%1)="Lion" {#sub {%ansi(7) Eroee was in the sign of the %1. - PEACE }}
#if (%1)="Spider" {#sub {%ansi(7) Eroee was in the sign of the %1. - PEACE }}
#if (%1)="Bumblebee" {#sub {%ansi(7) Eroee was in the sign of the %1. - PEACE }}
#if (%1)="Twin Crystals" {#sub {%ansi(7) Eroee was in the sign of the %1. - LOVE }}
#if (%1)="Crocodile" {#sub {%ansi(7) Eroee was in the sign of the %1. - LOVE }}
#if (%1)="Dragon" {#sub {%ansi(7) Eroee was in the sign of the %1. - LOVE }}
#if (%1)="Glacier" {#sub {%ansi(7) Eroee was in the sign of the %1. - LOVE }}
}
#TRIGGER {^ Tarox was in the sign of the (*).$} {
#if (%1)="Volcano" {#sub {%ansi(7) Tarox was in the sign of the %1. - IGNITE }}
#if (%1)="Dolphin" {#sub {%ansi(7) Tarox was in the sign of the %1. - IGNITE }}
#if (%1)="Burning Censer" {#sub {%ansi(7) Tarox was in the sign of the %1. - IGNITE }}
#if (%1)="Skull" {#sub {%ansi(7) Tarox was in the sign of the %1. - IGNITE }}
#if (%1)="Antlers" {#sub {%ansi(7) Tarox was in the sign of the %1. - ASTHMA }}
#if (%1)="Lion" {#sub {%ansi(7) Tarox was in the sign of the %1. - ASTHMA }}
#if (%1)="Spider" {#sub {%ansi(7) Tarox was in the sign of the %1. - ASTHMA }}
#if (%1)="Bumblebee" {#sub {%ansi(7) Tarox was in the sign of the %1. - ASTHMA }}
#if (%1)="Twin Crystals" {#sub {%ansi(7) Tarox was in the sign of the %1. - FREEZE }}
#if (%1)="Crocodile" {#sub {%ansi(7) Tarox was in the sign of the %1. - FREEZE }}
#if (%1)="Dragon" {#sub {%ansi(7) Tarox was in the sign of the %1. - FREEZE }}
#if (%1)="Glacier" {#sub {%ansi(7) Tarox was in the sign of the %1. - FREEZE }}
}
#TRIGGER {^ Papaxi was in the sign of the (*).$} {
#if (%1)="Volcano" {#sub {%ansi(7) Papaxi was in the sign of the %1. - EGO }}
#if (%1)="Dolphin" {#sub {%ansi(7) Papaxi was in the sign of the %1. - EGO }}
#if (%1)="Burning Censer" {#sub {%ansi(7) Papaxi was in the sign of the %1. - EGO }}
#if (%1)="Skull" {#sub {%ansi(7) Papaxi was in the sign of the %1. - EGO }}
#if (%1)="Antlers" {#sub {%ansi(7) Papaxi was in the sign of the %1. - HEALTH }}
#if (%1)="Lion" {#sub {%ansi(7) Papaxi was in the sign of the %1. - HEALTH }}
#if (%1)="Spider" {#sub {%ansi(7) Papaxi was in the sign of the %1. - HEALTH }}
#if (%1)="Bumblebee" {#sub {%ansi(7) Papaxi was in the sign of the %1. - HEALTH }}
#if (%1)="Twin Crystals" {#sub {%ansi(7) Papaxi was in the sign of the %1. - MANA }}
#if (%1)="Crocodile" {#sub {%ansi(7) Papaxi was in the sign of the %1. - MANA }}
#if (%1)="Dragon" {#sub {%ansi(7) Papaxi was in the sign of the %1. - MANA }}
#if (%1)="Glacier" {#sub {%ansi(7) Papaxi was in the sign of the %1. - MANA }}
}
#TRIGGER {^ Aapek was in the sign of (*).$} {
#if (%1)="Volcano" {#sub {%ansi(7) Aapek was in the sign of the %1. - AEON }}
#if (%1)="Dolphin" {#sub {%ansi(7) Aapek was in the sign of the %1. - AEON }}
#if (%1)="Burning Censer" {#sub {%ansi(7) Aapek was in the sign of the %1. - AEON }}
#if (%1)="Skull" {#sub {%ansi(7) Aapek was in the sign of the %1. - AEON }}
#if (%1)="Antlers" {#sub {%ansi(7) Aapek was in the sign of the %1. - ANOREXIA }}
#if (%1)="Lion" {#sub {%ansi(7) Aapek was in the sign of the %1. - ANOREXIA }}
#if (%1)="Spider" {#sub {%ansi(7) Aapek was in the sign of the %1. - ANOREXIA }}
#if (%1)="Bumblebee" {#sub {%ansi(7) Aapek was in the sign of the %1. - ANOREXIA }}
#if (%1)="Twin Crystals" {#sub {%ansi(7) Aapek was in the sign of the %1. - POX }}
#if (%1)="Crocodile" {#sub {%ansi(7) Aapek was in the sign of the %1. - POX }}
#if (%1)="Dragon" {#sub {%ansi(7) Aapek was in the sign of the %1. - POX }}
#if (%1)="Glacier" {#sub {%ansi(7) Aapek was in the sign of the %1. - POX }}
}
#TRIGGER {^ (*) was in the sign of the Skull ~(retrograde~).$} {
#if (%1)="Eroee" {#sub {%ansi(7) %1 was in the sign of the Skull (retrograde). - JUSTICE }}
#if (%1)="Sidiak" {#sub {%ansi(7) %1 was in the sign of the Skull (retrograde). - STUPIDITY }}
#if (%1)="Torax" {#sub {%ansi(7) %1 was in the sign of the Skull (retrograde). - IGNITE }}
#if (%1)="Papaxi" {#sub {%ansi(7) %1 was in the sign of the Skull (retrograde). - EGO }}
}
#TRIGGER {^ (*) was in the sign of Skull ~(retrograde~).$} {#if (%1)="Aapek" {#sub {%ansi(7) %1 was in the sign of the Skull (retrograde). - AEON }}}
#TRIGGER {^(%d)h, (%d)m,} {#T- Offence|Celestine|Astrology|Nativity}
#CLASS 0
It have a lot of #if but i did it fast and didnt optimized it, but it works perfect.
#CLASS {Offense|Celestine|Astrology|Nativity}
#TRIGGER {^ Sun was in the sign of the (*).$} {
#if %1="Volcano" {#sub {%ansi(7) Sun was in the sign of the %1. - FIRE DAMAGE }}
#if %1="Antlers" {#sub {%ansi(7) Sun was in the sign of the %1. - CUTTING DAMAGE }}
#if (%1)="Twin Crystals" {#sub {%ansi(7) Sun was in the sign of the %1. - PSYCHIC DAMAGE }}
#if %1="Dolphin" {#sub {%ansi(7) Sun was in the sign of the %1. - COLD DAMAGE }}
#if %1="Lion" {#sub {%ansi(7) Sun was in the sign of the %1. - CUTTING DAMAGE }}
#if %1="Crocodile" {#sub {%ansi(7) Sun was in the sign of the %1. - ASPHYXIATION DAMAGE }}
#if (%1)="Burning Censer" {#sub {%ansi(7) Sun was in the sign of the %1. - ASPHYXIATION DAMAGE }}
#if %1="Spider" {#sub {%ansi(7) Sun was in the sign of the %1. - POISON DAMAGE }}
#if %1="Dragon" {#sub {%ansi(7) Sun was in the sign of the %1. - FIRE DAMAGE }}
#if %1="Skull" {#sub {%ansi(7) Sun was in the sign of the %1. - BLUNT DAMAGE }}
#if %1="Bumblebee" {#sub {%ansi(7) Sun was in the sign of the %1. - POISON DAMAGE }}
#if %1="Glacier" {#sub {%ansi(7) Sun was in the sign of the %1. - COLD DAMAGE }}
}
#TRIGGER {^ Moon was in the sign of the (*).$} {
#if (%1)="Volcano" {#sub {%ansi(7) Moon was in the sign of the %1. - HALLUCINATE }}
#if (%1)="Dolphin" {#sub {%ansi(7) Moon was in the sign of the %1. - HALLUCINATE }}
#if (%1)="Burning Censer" {#sub {%ansi(7) Moon was in the sign of the %1. - HALLUCINATE }}
#if (%1)="Skull" {#sub {%ansi(7) Moon was in the sign of the %1. - HALLUCINATE }}
#if (%1)="Antlers" {#sub {%ansi(7) Moon was in the sign of the %1. - DIZZINESS }}
#if (%1)="Lion" {#sub {%ansi(7) Moon was in the sign of the %1. - DIZZINESS }}
#if (%1)="Spider" {#sub {%ansi(7) Moon was in the sign of the %1. - DIZZINESS }}
#if (%1)="Bumblebee" {#sub {%ansi(7) Moon was in the sign of the %1. - DIZZINESS }}
#if (%1)="Twin Crystals" {#sub {%ansi(7) Moon was in the sign of the %1. - DEMENTIA }}
#if (%1)="Crocodile" {#sub {%ansi(7) Moon was in the sign of the %1. - DEMENTIA }}
#if (%1)="Dragon" {#sub {%ansi(7) Moon was in the sign of the %1. - DEMENTIA }}
#if (%1)="Glacier" {#sub {%ansi(7) Moon was in the sign of the %1. - DEMENTIA }}
}
#TRIGGER {^ Sidiak was in the sign of the (*).$} {
#if (%1)="Volcano" {#sub {%ansi(7) Sidiak was in the sign of the %1. - STUPIDITY }}
#if (%1)="Dolphin" {#sub {%ansi(7) Sidiak was in the sign of the %1. - STUPIDITY }}
#if (%1)="Burning Censer" {#sub {%ansi(7) Sidiak was in the sign of the %1. - STUPIDITY }}
#if (%1)="Skull" {#sub {%ansi(7) Sidiak was in the sign of the %1. - STUPIDITY }}
#if (%1)="Antlers" {#sub {%ansi(7) Sidiak was in the sign of the %1. - AMNESIA }}
#if (%1)="Lion" {#sub {%ansi(7) Sidiak was in the sign of the %1. - AMNESIA }}
#if (%1)="Spider" {#sub {%ansi(7) Sidiak was in the sign of the %1. - AMNESIA }}
#if (%1)="Bumblebee" {#sub {%ansi(7) Sidiak was in the sign of the %1. - AMNESIA }}
#if (%1)="Twin Crystals" {#sub {%ansi(7) Sidiak was in the sign of the %1. - CONFUSION }}
#if (%1)="Crocodile" {#sub {%ansi(7) Sidiak was in the sign of the %1. - CONFUSION }}
#if (%1)="Dragon" {#sub {%ansi(7) Sidiak was in the sign of the %1. - CONFUSION }}
#if (%1)="Glacier" {#sub {%ansi(7) Sidiak was in the sign of the %1. - CONFUSION }}
}
#TRIGGER {^ Eroee was in the sign of the (*).$} {
#if (%1)="Volcano" {#sub {%ansi(7) Eroee was in the sign of the %1. - JUSTICE }}
#if (%1)="Dolphin" {#sub {%ansi(7) Eroee was in the sign of the %1. - JUSTICE }}
#if (%1)="Burning Censer" {#sub {%ansi(7) Eroee was in the sign of the %1. - JUSTICE }}
#if (%1)="Skull" {#sub {%ansi(7) Eroee was in the sign of the %1. - JUSTICE }}
#if (%1)="Antlers" {#sub {%ansi(7) Eroee was in the sign of the %1. - PEACE }}
#if (%1)="Lion" {#sub {%ansi(7) Eroee was in the sign of the %1. - PEACE }}
#if (%1)="Spider" {#sub {%ansi(7) Eroee was in the sign of the %1. - PEACE }}
#if (%1)="Bumblebee" {#sub {%ansi(7) Eroee was in the sign of the %1. - PEACE }}
#if (%1)="Twin Crystals" {#sub {%ansi(7) Eroee was in the sign of the %1. - LOVE }}
#if (%1)="Crocodile" {#sub {%ansi(7) Eroee was in the sign of the %1. - LOVE }}
#if (%1)="Dragon" {#sub {%ansi(7) Eroee was in the sign of the %1. - LOVE }}
#if (%1)="Glacier" {#sub {%ansi(7) Eroee was in the sign of the %1. - LOVE }}
}
#TRIGGER {^ Tarox was in the sign of the (*).$} {
#if (%1)="Volcano" {#sub {%ansi(7) Tarox was in the sign of the %1. - IGNITE }}
#if (%1)="Dolphin" {#sub {%ansi(7) Tarox was in the sign of the %1. - IGNITE }}
#if (%1)="Burning Censer" {#sub {%ansi(7) Tarox was in the sign of the %1. - IGNITE }}
#if (%1)="Skull" {#sub {%ansi(7) Tarox was in the sign of the %1. - IGNITE }}
#if (%1)="Antlers" {#sub {%ansi(7) Tarox was in the sign of the %1. - ASTHMA }}
#if (%1)="Lion" {#sub {%ansi(7) Tarox was in the sign of the %1. - ASTHMA }}
#if (%1)="Spider" {#sub {%ansi(7) Tarox was in the sign of the %1. - ASTHMA }}
#if (%1)="Bumblebee" {#sub {%ansi(7) Tarox was in the sign of the %1. - ASTHMA }}
#if (%1)="Twin Crystals" {#sub {%ansi(7) Tarox was in the sign of the %1. - FREEZE }}
#if (%1)="Crocodile" {#sub {%ansi(7) Tarox was in the sign of the %1. - FREEZE }}
#if (%1)="Dragon" {#sub {%ansi(7) Tarox was in the sign of the %1. - FREEZE }}
#if (%1)="Glacier" {#sub {%ansi(7) Tarox was in the sign of the %1. - FREEZE }}
}
#TRIGGER {^ Papaxi was in the sign of the (*).$} {
#if (%1)="Volcano" {#sub {%ansi(7) Papaxi was in the sign of the %1. - EGO }}
#if (%1)="Dolphin" {#sub {%ansi(7) Papaxi was in the sign of the %1. - EGO }}
#if (%1)="Burning Censer" {#sub {%ansi(7) Papaxi was in the sign of the %1. - EGO }}
#if (%1)="Skull" {#sub {%ansi(7) Papaxi was in the sign of the %1. - EGO }}
#if (%1)="Antlers" {#sub {%ansi(7) Papaxi was in the sign of the %1. - HEALTH }}
#if (%1)="Lion" {#sub {%ansi(7) Papaxi was in the sign of the %1. - HEALTH }}
#if (%1)="Spider" {#sub {%ansi(7) Papaxi was in the sign of the %1. - HEALTH }}
#if (%1)="Bumblebee" {#sub {%ansi(7) Papaxi was in the sign of the %1. - HEALTH }}
#if (%1)="Twin Crystals" {#sub {%ansi(7) Papaxi was in the sign of the %1. - MANA }}
#if (%1)="Crocodile" {#sub {%ansi(7) Papaxi was in the sign of the %1. - MANA }}
#if (%1)="Dragon" {#sub {%ansi(7) Papaxi was in the sign of the %1. - MANA }}
#if (%1)="Glacier" {#sub {%ansi(7) Papaxi was in the sign of the %1. - MANA }}
}
#TRIGGER {^ Aapek was in the sign of (*).$} {
#if (%1)="Volcano" {#sub {%ansi(7) Aapek was in the sign of the %1. - AEON }}
#if (%1)="Dolphin" {#sub {%ansi(7) Aapek was in the sign of the %1. - AEON }}
#if (%1)="Burning Censer" {#sub {%ansi(7) Aapek was in the sign of the %1. - AEON }}
#if (%1)="Skull" {#sub {%ansi(7) Aapek was in the sign of the %1. - AEON }}
#if (%1)="Antlers" {#sub {%ansi(7) Aapek was in the sign of the %1. - ANOREXIA }}
#if (%1)="Lion" {#sub {%ansi(7) Aapek was in the sign of the %1. - ANOREXIA }}
#if (%1)="Spider" {#sub {%ansi(7) Aapek was in the sign of the %1. - ANOREXIA }}
#if (%1)="Bumblebee" {#sub {%ansi(7) Aapek was in the sign of the %1. - ANOREXIA }}
#if (%1)="Twin Crystals" {#sub {%ansi(7) Aapek was in the sign of the %1. - POX }}
#if (%1)="Crocodile" {#sub {%ansi(7) Aapek was in the sign of the %1. - POX }}
#if (%1)="Dragon" {#sub {%ansi(7) Aapek was in the sign of the %1. - POX }}
#if (%1)="Glacier" {#sub {%ansi(7) Aapek was in the sign of the %1. - POX }}
}
#TRIGGER {^ (*) was in the sign of the Skull ~(retrograde~).$} {
#if (%1)="Eroee" {#sub {%ansi(7) %1 was in the sign of the Skull (retrograde). - JUSTICE }}
#if (%1)="Sidiak" {#sub {%ansi(7) %1 was in the sign of the Skull (retrograde). - STUPIDITY }}
#if (%1)="Torax" {#sub {%ansi(7) %1 was in the sign of the Skull (retrograde). - IGNITE }}
#if (%1)="Papaxi" {#sub {%ansi(7) %1 was in the sign of the Skull (retrograde). - EGO }}
}
#TRIGGER {^ (*) was in the sign of Skull ~(retrograde~).$} {#if (%1)="Aapek" {#sub {%ansi(7) %1 was in the sign of the Skull (retrograde). - AEON }}}
#TRIGGER {^(%d)h, (%d)m,} {#T- Offence|Celestine|Astrology|Nativity}
#CLASS 0
Shiri2005-11-04 00:26:10
Could use #ismember (it's on another thread around here, lemme find it) to clean that up a bit, but that's roughly what mine looks like (except mine has echoes instead of subs) and it always worked for me. Remember to take all the "the"s out of Ekard's post in the Aapek section, since it doesn't have it for some reason.
Also, not that Ekard's script had it, but if you want to fiddle and do new stuff, whatever you do, don't try to do anything with anchors to this crap. I don't THINK it's just JAVA that spazzes out when you do it - it considers a whole STARGAZE (and I think nativity) output one line, so when I tried to do "{<}Aapek is in the sign of {*}.{>}" to make it so that I didn't have to do seperate triggers for Burning Censer and Twin Crystals it decided to put the next 6 lines into the variable too, so the #ifs all failed.
This is what mine looks like it if it helps.
---------- dumihru ----------
MOON - DEMENTIA
EROEE - JUSTICE
SIDIAK - STUPIDITY
TAROX - IGNITION
PAPAXI - HEALTH
AAPEK - AEON
- - - - - - - - - - - - - - -
SUN - SKR DAMAGE
MOON - GLR DEMENTIA
EROEE - SKR JUSTICE
SIDIAK - SKR STUPIDITY
TAROX - SKR IGNITION
PAPAXI - TWR MANA
AAPEK - SKR AEON
- - - - - SUN - - - - -
{ (Skull) (Antlers/Croc) (Glacier/Spider) (Dragon/Bumble) }
{ (Dolphin) (Censer/Volcano) (Twins/Lion) }
- - - - - AAPEK - - - - -
{ (Skull) (Antlers/Croc) (Glacier/Spider) (Dragon/Bumble) }
{ (Dolphin) (Censer/Volcano) (Twins/Lion) }
EDIT:
Also, not that Ekard's script had it, but if you want to fiddle and do new stuff, whatever you do, don't try to do anything with anchors to this crap. I don't THINK it's just JAVA that spazzes out when you do it - it considers a whole STARGAZE (and I think nativity) output one line, so when I tried to do "{<}Aapek is in the sign of {*}.{>}" to make it so that I didn't have to do seperate triggers for Burning Censer and Twin Crystals it decided to put the next 6 lines into the variable too, so the #ifs all failed.
This is what mine looks like it if it helps.
---------- dumihru ----------
MOON - DEMENTIA
EROEE - JUSTICE
SIDIAK - STUPIDITY
TAROX - IGNITION
PAPAXI - HEALTH
AAPEK - AEON
- - - - - - - - - - - - - - -
SUN - SKR DAMAGE
MOON - GLR DEMENTIA
EROEE - SKR JUSTICE
SIDIAK - SKR STUPIDITY
TAROX - SKR IGNITION
PAPAXI - TWR MANA
AAPEK - SKR AEON
- - - - - SUN - - - - -
{ (Skull) (Antlers/Croc) (Glacier/Spider) (Dragon/Bumble) }
{ (Dolphin) (Censer/Volcano) (Twins/Lion) }
- - - - - AAPEK - - - - -
{ (Skull) (Antlers/Croc) (Glacier/Spider) (Dragon/Bumble) }
{ (Dolphin) (Censer/Volcano) (Twins/Lion) }
EDIT:
CODE
#if (%ismember(%1, "Volcano|Dolphin|Burning|Skull")) {#sub Ego Down}
Got that posted from Zarquan in the other thread.Saran2005-11-04 01:48:46
i've got mine setup with a button that does that whole %ismember thing (hehe made them into variables cause i'm lazy) but i haven't got the retrograde effects (i couldn't find out what they are)
now fer the fun bit, when i get some credits in i'll want to build up one for spheres and the like
now fer the fun bit, when i get some credits in i'll want to build up one for spheres and the like