All pastes #912326 Raw Edit

Something

public text v1 · immutable
#912326 ·published 2008-02-21 08:54 UTC
rendered paste body
on *:connect: { 
  ; Point to Database Path
  set %botdb $sqlite_open($scriptdirDatabases\xfed.db)

  ; If the database exists, skip the check.
  if ($exists($scriptdirDatabases\xfed.db)) { 
    noop $tip(Information,Information,Database Exists -- Loading Bot...)
    start 
  } 
  else {
    noop $tip(Information,Information,Database not created -- Running Configuration.)
    dbsetup
  }
}