viewing paste Unknown #21723 | Athena

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
function    script  DeathPhrase {
.@DPhrase = rand(1,10);
.@DPhrase1 = "I can't die yet!";
if( .@DPhrase == 1) {
showscript "No, it can't be...";
} else
if( .@DPhrase == 2) {
showscript "Is any of this for real, or not?";
} else
if( .@DPhrase == 3) {
showscript "I don't want to meet Hades!";
} else
if( .@DPhrase == 4) {
showscript "Gggg... Ahhhhhhhhhh!!!!";
} else
if( .@DPhrase == 5) {
showscript ""+.@DPhrase1+"";
} else
if( .@DPhrase == 6) {
showscript "How could I have let this... happen?";
} else
if( .@DPhrase == 7) {
showscript "Gahhhhhh!!!";
} else
if( .@DPhrase == 8) {
showscript "It can't end like this...";
} else
if( .@DPhrase == 9) {
showscript "I'm starting to see the light...";
} else
if( .@DPhrase == 10) {
showscript "Damn the evils of the Randgris Valkyrie!";
}
}
function    script  MalScreams  {
 
.@MalScreams = rand(1,5);
 
if (Sex == 1 && .@MalScreams == 1) {
soundeffect "voice_man.wav", 0;
} else
if (Sex == 1 && .@MalScreams == 2) {
soundeffect "voice_man2.wav", 0;
} else
if (Sex == 1 && .@MalScreams == 3) {
soundeffect "voice_man3.wav", 0;
} else
if (Sex == 1 && .@MalScreams == 4) {
soundeffect "voice_man4.wav", 0;
} else
if (Sex == 1 && .@MalScreams == 5) {
soundeffect "voice_man5.wav", 0;
} else
end;
}
function    script  FemScreams  {
.@FemScreams = rand(1,4);
if (Sex == 0 && .@FemScreams == 1) {
soundeffect "voice_girl.wav", 0;
} else
if (Sex == 0 && .@FemScreams == 2) {
soundeffect "voice_girl2.wav", 0;
} else
if (Sex == 0 && .@FemScreams == 3) {
soundeffect "voice_girl3.wav", 0;
} else
if (Sex == 0 && .@FemScreams == 4) {
soundeffect "voice_girl4.wav", 0;
} else
end;
}
-   script  DeathS  -1,{
OnPCDieEvent:
if (Sex)
{
//  callfunc ("DeathPhrase");
    callfunc ("MalScreams");
} else
//  callfunc ("DeathPhrase");
    callfunc ("FemScreams");
}
Viewed 748 times, submitted by Guest.