16 lines
350 B
Plaintext
16 lines
350 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: vat_getnextleft
|
||
|
//:: Conversation Action Taken
|
||
|
//:: Change armor appearance
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
#include "inc_changearmor"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
//change the armor item
|
||
|
int iItemAppr = GetLocalInt(GetPCSpeaker(),"iItemAppr");
|
||
|
armorModelNext(iItemAppr);
|
||
|
}
|
||
|
|