Just so you know, the Arbiter's cloaking field is determined by its air weapon range. You can't, however, determine whether to cloak only air, only ground or buildings, since that part is hardcoded.
QUOTE(DiscipleOfAdun @ Jan 2 2007, 07:39 AM)
I would assume there's a check in the build routine that, upon completion of a unit in a nuke silo, places the pointer to that unit in the memory reserved for the nuke's poitner and sets the armed count to 1. I also assume the queue is ID coded also.
[right][snapback]608719[/snapback][/right]
Yup, it's byte EAX+D0. It basically checks if it's there, if not, it'll allow you to build one.
QUOTE(Lord_Agamemnon(MM) @ Jan 8 2007, 09:48 PM)
About Sigorder
By Lord_Agamemnon(MM)
Test: Sigorder is one of those nasty ICECC opcodes that is relatively unknown. With a bit of testing and help, I set out to roughly determined what its values do. As far as I know, sigorder only comes as 1, 2, 4, and 16.
Outcome: Mixed, leaning toward success The results are listed as follows:
CODE
sigorder 1
1)Still not entirely sure. It's often used for things dying: the Infested Terran's attack animation and every missile use it.
2)Toggle siege mode?
CODE
sigorder 2
This one's been known for a while: end spell cast. This sends SC the signal to stop casting the spell and get on with whatever else it wants to do. Maybe someone can flesh this out a bit more.
CODE
sigorder 4
This has two uses:
1) Toggle burrow status. It's found in every burrow and unburrow animation.
2) Complete morph. This is found in the Zerg Egg, Cocoon, and Building Morph graphics in the midst of the completion frames. Remove it and the morph never actually finishes.
CODE
sigorder 16
Toggle lift-off/landed status. Found in all lift-off and landing animations. This is what tells the game when to actually shift the building's graphic and toggle the flyer flag.
Example: Decompile iscript.bin and look at it.
[right][snapback]611411[/snapback][/right]
It's not unknown at all. I can explain both sigorder and orderdone shortly.
BTW you forgot sigorder 64 which is the one for the valk's afterburners.
Although I'd love to respect the format made by Hercanic, it's a long write, so I'll keep it long and boring

Thanks to DoA, I learned about the order bytes and sigorder and then as I improved I learned about orderdone. Basically, considering EAX, a normal register (pointing to the current unit's structure), we'll consider 3 bytes: 4D, 4E and 4F.
EAX+4D holds the internal order (which may or may not be the same as the one assigned via the order interpreter of orders.dat (switch 0...AE). This is internally used to know what the current order is to the unit checked by the exe. EAX+4E is the current stage of the order. Some orders are broken in parts (siege mode, place mine, EMP Shockwave etc.). For example, mines are split in the vult moving to the location, spawning the mine, checking the sigorder (sigorder 1) and then telling the mines to burrow and waiting for their sigorder (sigorder 4) and of course, decreasing the mine amount. These are all used as switches (in layman's terms: parts of the code) and EAX+4E tells us which one we are at. EAX+4F is the interesting one since it checks the current sigorder value of the order we're at. sigorder is opcode 0x24 in previous IceCC versions.
So much for the boring intro that some might not understand. Now, onward to the fun stuff. Basically we have these parts split off everywhere. Even in IScript. Let's take the queen's spell carrier or the EMP action. We have the projectile which breaks off in a specific effect. How can the engine possibly time this, and so accurately for that matter ? Simple: by using sigorders. This is done via IScript and read by the exe. It basically goes like this: IScript performs some effects, the EXE performs the order, more effects are created and controlled by the IScript, then comes the "castspell" opcode (which is 0x27 for older IceCC versions). At this point the main part of the spell starts to unravel. In order for the spell to actually continue to the next stage, the EXE can't know when all the graphical effects perform or finish. Therefore, as soon as all the needed effects are done, IScript calls sigorder. This lets the exe know the anim is finished and the EXE can move to the next stage of the order.
What are the sigorder values ? Are they really orders ? No. The label might be misleading a bit, but in reality, it's not quite

There is this set of bits. Each exe requirement (abilities, technologies, effects etc.) require a different sigorder (which is why the same value is present in multiple events, but it follows a pattern). This is also to make sure the same bit can't be set by the unit in different circumstances, thus confusing the exe. The values are written in the exe and can't be changed (well they can, but it takes a lot of work). What you basically do is set a bit (say sigorder 4 enables bit 3). If the bit is set (it is constantly monitored by the exe), it will perform the next phase and UNSET IT to 0. This is why the Icon turns white while the spell is in work and then back to yellow once it's done. It's simple to test, removing the sigorder will, among many other different outcomes, not reset the button icon.
What about orderdone (opcode 0x41) ? This is the opposite of sigorder. This unsets the bit. Therefore, sigorder 4 and orderdone 4 basically cancel eachother out and the effect is equivalent to that of removing sigorder itself. Why keep this command then ? Well, I'll keep it simple: which is the only auto-cast ability in StarCraft ? Healing. Noticed how it actually always stops before healing everytime ? Check IScript, orderdone is called everytime the ability should be reset in order to remove the Medic's target and stop using the ability itself.
Hope this cleared up all the confusion
