HoS_PRC8/_mod/_module/nss/rts_it_mag45.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

11 lines
443 B
Plaintext

// rts_it_mag45 - water walk ability
void main()
{
object oPC=GetItemActivator();
effect eVis=EffectVisualEffect(VFX_DUR_IOUNSTONE);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eVis,oPC,HoursToSeconds(1));
SetLocalInt(oPC,"nWaterWalk",TRUE);
DelayCommand(HoursToSeconds(1),DeleteLocalInt(oPC,"nWaterWalk"));
SendMessageToPC(oPC,"You now have the water walk ability for the next hour which provides a +25 to swim checks.");
}