In other words, imagine yourself at a real armor shop and they have mannequins suited with armor on display. If you try and move the mannequin or take what's on it, the guy at the cash register is gonna be like hey what do you think you're doing? leave that alone, etc....
Begin PE_f_e_mannequin_script short button short NoHit short questionState SkipAnim if ( menumode == 1 ) return endif if ( onactivate == 0 ) if ( questionState == 0 ) return endif endif if ( questionState == 0 ) MessageBox, "Armor Mannequin", "Move the Manneqiun", "Add or Remove Armor" set questionState to 1 endif if ( questionState == 1 ) set button to GetButtonPressed if ( button == 0 ) set questionState to 10 elseif ( button == 1 ) set questionState to 0 Activate endif endif if ( questionState == 10 ) MessageBox "Did you remove everything from the mannequin?", "Yes", "No" set questionState to 20 endif if ( questionState == 20 ) set button to GetButtonPressed if ( button == 0 ) set questionState to 0 Disable player->addItem, "PE_mannequin_f_elf_item", 1 playSound "Item Misc Up" elseif ( button == 1 ) set questionState to 0 Activate endif endifEnd