How do I change the color of the barricade before putting her?
Like that:
Attachment 155221Attachment 155222
Printable View
How do I change the color of the barricade before putting her?
Like that:
Attachment 155221Attachment 155222
r3dlog
Quote:
--- Log started at Wed Dec 30 00:13:57 2015
000000.131| Checking for D3D11
000000.180| r3dFile: can't open game.ini
000000.180| Can't open file "game.ini"
000000.180| r3dFile: can't open local.ini
000000.180| Can't open file "local.ini"
000000.196| Input Devices enabled: Mouse, Keyboard
000000.264| VMEM As seen through DDRaw: 1990
000000.264| VMEM As seen through WMI: 0
000000.300| We have 3728 MB texture memory
000000.301| r3dFont: Creating Verdana 10pt
000000.302| r3dFont: Finished creating Verdana 10pt
000000.302| r3dFont: Creating System 12pt
000000.303| r3dFont: Finished creating System 12pt
000000.303| r3dFont: Creating System 10pt
000000.303| r3dFont: Finished creating System 10pt
000000.303| r3dFont: Creating System 8pt
000000.303| r3dFont: Finished creating System 8pt
000000.303| r3dFont: Creating System 11pt
000000.303| r3dFont: Finished creating System 11pt
000000.761| Starting updater, v:1.2.7, cmd:
000000.762| Checking for new updater
000001.599| Checking for new updater - finished
000042.079| WO_API: http timeout
dbinfo.incQuote:
<?php function db_connect()
{
$db_user = "sa";
$db_pass = "password";
$db_dbname = "WARZ";
$db_serverName = "IP,PORT";
$db_connectionInfo = array(
"UID" => $db_user,
"PWD" => $db_pass,
"Database" => $db_dbname,
"CharacterSet" => "UTF-8"
//"ReturnDatesAsStrings" => true
);
$conn = sqlsrv_connect($db_serverName, $db_connectionInfo);
if(! $conn)
{
//echo "Connection could not be established.\n";
die( print_r( sqlsrv_errors(), true));
exit();
}
return $conn;
}
function db_exec($conn, $tsql, $params)
{
$stmt = sqlsrv_query($conn, $tsql, $params);
if(! $stmt)
{
echo "exec failed.\n";
die( print_r( sqlsrv_errors(), true));
}
$member = sqlsrv_fetch_array($stmt, SQLSRV_FETCH_ASSOC);
return $member;
}
$conn = db_connect();
?>