8 lines
243 B
Plaintext
8 lines
243 B
Plaintext
|
// it_pot_wb - Potion of Water Breathing
|
||
|
#include "wazoo_h"
|
||
|
void main()
|
||
|
{
|
||
|
object oPC=GetItemActivator();
|
||
|
AssignCommand(oPC,ActionCastSpellAtObject(SPELL_WZ_WATER_BREATHING,oPC,METAMAGIC_ANY,TRUE,10,PROJECTILE_PATH_TYPE_DEFAULT,TRUE));
|
||
|
}
|