24 lines
667 B
Plaintext
24 lines
667 B
Plaintext
//Created by Esreyr Fears
|
|
//on February 2nd, 2006
|
|
|
|
//Change to an Body Type: Big (aka Fat)
|
|
|
|
#include "alt_shape_inc"
|
|
|
|
void main() {
|
|
|
|
//Get the PC & widget to store the information on
|
|
object oPC = GetPCSpeaker();
|
|
object oAltshapeWidget = GetItemPossessedBy(oPC, "alt_shape_conv");
|
|
if (oAltshapeWidget == OBJECT_INVALID) return;
|
|
|
|
//Set the appropriate 'Change-to' variable
|
|
if (GetPhenoType(oPC) == PHENOTYPE_BIG)
|
|
SetLocalInt(oAltshapeWidget, "change_pheno", PHENOTYPE_NORMAL );
|
|
else
|
|
SetLocalInt(oAltshapeWidget, "change_pheno", PHENOTYPE_BIG );
|
|
|
|
//Change the PC's Race appearance
|
|
makeChanges(oPC, oAltshapeWidget);
|
|
}
|