// Evol functions. // Authors: // Alige // Reid // Description: // Tell a random sleeping sound. // Variables: // @rand = Random number between the number of "sleeping" choice. function script Asleep { set @rand, rand(2); if (@rand == 0) npctalk3 l("Zzzzzzzzz..."); if (@rand == 1) npctalk3 l("Rrrr... Pchhhh..."); if (@rand == 2) npctalk3 l("Ggrmm... Grmmmm..."); }