Rune_PRC8/_module/nss/alt_shape_save2.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

23 lines
930 B
Plaintext

//Created by Esreyr Fears
//on February 2nd, 2006
//Save the current configuration to SLOT 2
#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
SetLocalInt(oAltshapeWidget, "is_original", 1);
SetLocalInt(oAltshapeWidget, "slot2_face", GetLocalInt(oAltshapeWidget, "change_face" ) );
SetLocalInt(oAltshapeWidget, "slot2_shape", GetLocalInt(oAltshapeWidget, "change_shape" ) );
SetLocalInt(oAltshapeWidget, "slot2_pheno", GetLocalInt(oAltshapeWidget, "change_pheno" ) );
SetLocalInt(oAltshapeWidget, "slot2_tail", GetLocalInt(oAltshapeWidget, "change_tail" ) );
SetLocalInt(oAltshapeWidget, "slot2_wing", GetLocalInt(oAltshapeWidget, "change_wing" ) );
}