This is kinda offtopic, but anyway:
I was looking through the goldrush script file for some examples of stuff, and I came upon some rather curious comments. They’re rather funny, so I figured I’d post them here for your entertainment (just the commented lines, the others are just to give you an idea as to what’s going on):
...
tank
{
...
// stuck checking
// digibob: since we cant return variables, just use bit 3 of accum 1 as a register... mmmm assembly...
trigger stuck_check
{
...
}
...
trigger stopcheck_setup
{
accum 1 bitset 6 // stop if we're stuck/no-one's pushing :)
...
}
...
}
...
// digibob: ok, for once i'm gonna PLAN this one, so NOTHING WILL BREAK EVAR
...
truck
{
...
// wheeeeeeeeeeeeeeels. eeels. ls.
trigger wheels_forward
{
...
}
...
// barrier checking
// digibob: since we cant return variables, just use bit 3 of accum 1 as a register... mmmm assembly......
trigger stuck_check
{
...
}
...
trigger stopcheck_setup
{
accum 1 bitset 6 // stop if we're stuck/no-one's pushing :)
...
}
...
trigger deathcheck
{
...
//trigger truck tracks_stop // truck with tracks? i don't think so
...
}
...
}
...
// *********************************************
// *********** RUBBLE STTTUUUFFFF **************
// *********************************************
...
:fiesta:

