Problem is there are no dolphin appearances. Not even in the CEP. However, this script will do what you want but change the PC into a mako shark.
Make sure your basin in useable then put this in the its OnUsed event:
void main()
{
object oPC = GetLastUsedBy();
int nApp = GetAppearanceType(oPC);
//Make the PC "take a drink"
AssignCommand(oPC, PlayAnimation(ANIMATION_FIREFORGET_DRINK));
//Set Appearance to mako shark using the line number from appearance.2da
DelayCommand(3.0, SetCreatureAppearanceType(oPC, 447));
//After 30 seconds (+3 for above delay) change PC back
DelayCommand(33.0, SetCreatureAppearanceType(oPC, nApp));
}
Add visual effects to taste.
-420
Modifié par 420, 10 septembre 2010 - 10:19 .