PDA

View Full Version : Press start -> warp script?



Limzo
10-08-2006, 09:32 AM
Would a script that warps you when you press start be possible?
It could be used for title screens ect and is better than slashing with A because you wouldn't hear the slash noise and is better than pressing down, because, well, it is.

What do you guys think?

_L_
10-08-2006, 11:46 AM
ffc script PressStart {
void run() {
while(true){
if (Link->InputStart) {
Link->PitWarp(0,0); //replace 0s as necessary.
}
}
}
}Warning - untested.

Limzo
10-08-2006, 03:15 PM
Oh, thanks.

Cheers _L_!

bluedeath
10-21-2006, 09:46 AM
How come codes dont work for me = \

Limzo
10-25-2006, 10:21 AM
They don't work for anyone I know who's tried them. So, let's just try another method eh?

Saffith
10-25-2006, 01:02 PM
Ooh, just noticed something.
Small change:

ffc script PressStart {
void run() {
while(true){
if (Link->InputStart) {
Link->PitWarp(0,0); //replace 0s as necessary.
}
Waitframe();
}
}
}

See if that doesn't fix it.