View Single Post
  #21  
Old 09-16-2004, 02:47 PM
Cisyouc
Demi-God
 
Join Date: Jun 2004
Location: Heaven.
Posts: 1,260
Default

Quote:
Originally Posted by Cutter
Quote:
Originally Posted by sotonin
exactly 1.2 billion lightyears 5 hours 27 years 8 minutes and 67855435 seconds from now
whats scary to think is that i will still not know how to script a scribespell npc in perl by that time :lol:
Code:
##This Quest Is Too Simple To Give Credit To Cisyouc
sub EVENT_SAY
{
if($text=~/hail/i)
  {
  quest::say("[Scribe]?");
  }
if($text=~/scribe/i)
  {
  quest::scribespells($ulevel);
  }
}
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
Reply With Quote