Advertisement
2lame2blame

wrench.db

Mar 19th, 2014
603
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 3.89 KB | None | 0 0
  1. PRAGMA foreign_keys=OFF;
  2. BEGIN TRANSACTION;
  3. CREATE TABLE inst(INSTALLID UNIQUE NOT NULL PRIMARY KEY, GAMETYPE NOT NULL, INSTTYPE NOT NULL, IPADDR, CLIENTPORT, HOSTPORT, TVPORT, STEAMPORT, REPLAYPORT, ALLOWUPDATE DEFAULT '0', ALLOWSTART DEFAULT '0', BOOTSTART DEFAULT '0', AUTOCLEANUP DEFAULT '0', MAILNOTIFY DEFAULT '0', MAILTO DEFAULT '', RECOVER_CRASH_ENABLE DEFAULT '0', RECOVER_WATCHDOG_ENABLE DEFAULT '0', RECOVER_WATCHDOG_TEST_INTERVAL DEFAULT '', RECOVER_WATCHDOG_POLL_MAX DEFAULT '', RECOVER_WATCHDOG_START_WAIT DEFAULT '', RECOVER_SLEEP DEFAULT '', STARTBIN DEFAULT 'srcds_run', STARTBINARGS DEFAULT '');
  4. CREATE TABLE srcinfo(GAMETYPE UNIQUE NOT NULL PRIMARY KEY, GAMENAME NOT NULL, UPDATER, HLDSID, SERVER_APPID, CLIENT_APPID, GAMEARG, BINDIRSUBD, STEAMINF, INSTDEF_IPADDR, INSTDEF_CLIENTPORT, INSTDEF_HOSTPORT, INSTDEF_TVPORT, INSTDEF_STEAMPORT, INSTDEF_REPLAYPORT, INSTDEF_ALLOWUPDATE DEFAULT '0', INSTDEF_ALLOWSTART, INSTDEF_BOOTSTART, INSTDEF_AUTOCLEANUP, INSTDEF_MAILNOTIFY, INSTDEF_MAILTO, INSTDEF_RECOVER_CRASH_ENABLE DEFAULT '0', INSTDEF_RECOVER_WATCHDOG_ENABLE DEFAULT '0', INSTDEF_RECOVER_WATCHDOG_TEST_INTERVAL DEFAULT '10', INSTDEF_RECOVER_WATCHDOG_POLL_MAX DEFAULT '6', INSTDEF_RECOVER_WATCHDOG_START_WAIT DEFAULT '60', INSTDEF_RECOVER_SLEEP DEFAULT '10', INSTDEF_STARTBIN, INSTDEF_STARTBINARGS);
  5. INSERT INTO "srcinfo" VALUES('css','Counter Strike: Source','SteamCMD','"Counter-Strike Source"','232330','240','cstrike','','cstrike/steam.inf','0.0.0.0','27005','27015','27020','26005','27040','1','1','1','1','1',NULL,1,1,10,6,60,10,'wrench','-game $GAMEARG -ip $IPADDR +clientport $CLIENTPORT +hostport $HOSTPORT +tv_port $TVPORT -steamport $STEAMPORT -strictportbind -pidfile $PIDFILE -maxplayers 24');
  6. INSERT INTO "srcinfo" VALUES('csgo','Counter Strike: Global Offensive','SteamCMD',NULL,'740','730','csgo',NULL,'csgo/steam.inf','0.0.0.0','27005','27015','27020','26005','27040','1','1','1','1','1',NULL,1,1,10,6,60,10,'wrench','-game $GAMEARG -ip $IPADDR -strictportbind +clientport $CLIENTPORT +hostport $HOSTPORT +tv_port $TVPORT -steamport $STEAMPORT -strictportbind -pidfile $PIDFILE -console -usercon');
  7. INSERT INTO "srcinfo" VALUES('hl2dm','Half-Life 2: Deathmatch','SteamCMD','hl2mp','232370','320','hl2mp','','hl2mp/steam.inf','0.0.0.0','27005','27015','27020','26005','27040','1','1','1','1','1',NULL,1,1,10,6,60,10,'wrench','-game $GAMEARG -ip $IPADDR +clientport $CLIENTPORT +hostport $HOSTPORT +tv_port $TVPORT -steamport $STEAMPORT -strictportbind -pidfile $PIDFILE -maxplayers 24');
  8. INSERT INTO "srcinfo" VALUES('l4d2','Left 4 Dead 2','SteamCMD','left4dead2','222860','550','left4dead2','','left4dead2/steam.inf','0.0.0.0','27005','27015','27020','26005','27040','1','1','1','1','1',NULL,1,1,10,6,60,10,'wrench','-game $GAMEARG -ip $IPADDR +clientport $CLIENTPORT +hostport $HOSTPORT +tv_port $TVPORT -steamport $STEAMPORT -pidfile $PIDFILE');
  9. INSERT INTO "srcinfo" VALUES('tf2','Team Fortress 2','SteamCMD','tf','232250','440','tf','','tf/steam.inf','0.0.0.0','27005','27015','27020','26005','27040','1','1','1','1','1',NULL,1,1,10,6,60,10,'wrench','-game $GAMEARG -ip $IPADDR +clientport $CLIENTPORT +hostport $HOSTPORT +tv_port $TVPORT -steamport $STEAMPORT -strictportbind -pidfile $PIDFILE -maxplayers 24');
  10. INSERT INTO "srcinfo" VALUES('fof','Fistful of Frags','SteamCMD','fof','295230','265630','fof','','fof/steam.inf','0.0.0.0','27005','27015','27020','26005','27040','1','1',1,1,'1','',1,1,10,6,60,10,'wrench','-game $GAMEARG -ip $IPADDR +clientport $CLIENTPORT +hostport $HOSTPORT +tv_port $TVPORT -steamport $STEAMPORT -pidfile $PIDFILE -maxplayers 20');
  11. INSERT INTO "srcinfo" VALUES('l4d','Left 4 Dead','SteamCMD','left4dead','222840','500','left4dead','','left4dead/steam.inf','0.0.0.0','27005','27015','27020','26005','27040','1','1','1','1','1',NULL,1,1,10,6,60,10,'wrench','-game $GAMEARG -ip $IPADDR +clientport $CLIENTPORT +hostport $HOSTPORT +tv_port $TVPORT -steamport $STEAMPORT -pidfile $PIDFILE');
  12. COMMIT;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement