Warheck wrote
Yeah Pent, how did you get the message "You feel like a banana" ?
I replaced Seges' good prayer effect with code I pulled (of all places) from
Arcane's old attempt at a variant. He had one of the gods change you into parchment if they were upset.
void seges::PrayGoodEffect() //Amaterasus bad prayer effect
{
if(PLAYER->HasAllBodyParts()) //Checks if Player has all his limbs! Important because this effect crashes if you try it with missing limbs.
{
ADD_MESSAGE("A voice speaks. \"BANANAAAAAAAAAAAAAAA.\"");
PLAYER->ChangeMainMaterial(MAKE_MATERIAL(BANANA_FLESH)); //Change whole body to paper.
ADD_MESSAGE("You feel like a banana.");
return;
}
else
ADD_MESSAGE("\"No banana for you.\"");
return;
}
Interestingly enough, after changing my whole body into banana flesh with this, reading SoCMs allowed me to change the materials of my Head, Torso, and Groin as well.