SMF - Just Installed!
QuoteYeah, yeah.![]()
![]()
Doing so, though, that assumes someone understands MySQL.
Quote
I know I don't. The few times that I tried to set up a MySQL database engine I never did get it running. Not running anything useful, running at all!![]()
I'm good, but apparently I'm allergic to SQL engines. Or they're allergic to me.
![]()
QuoteIf only you hosted your Arma3 server on hosthavoc - where they use this magical DLL which sends game state to a MySQL server already installed & working for other arma3 games!
Bonus - you don't even need cpanel for it - they include a free DB for that exact purpose with your game server instances when you buy from hosthavoc.com.
I'm good, but apparently I'm allergic to SQL engines. Or they're allergic to me.

QuoteI don't have a machine to load & compile huge MP maps, but loading up & analyzing so we can figure out what makes the systems run should be fine.
Quote from: =JpS=SgtRock on November 21, 2021, 09:06:56 AM
I know, I know. I can't seem to settle on a consistent set of tools!![]()
I had high hopes for using the ALiVE (Advanced Light infantry Virtual Environment) mod. It's been around a long time, is still in active development, and has a really solid team of developers behind it. The challenge with it is there is no good way to modify the virtual elements based upon player actions. That makes using it for any sort of persistent campaign fairly problematic. I eventually had to give up on it for the time being.






[string]$sMySQLUserName = 'dbusername'
[string]$sMySQLPW = 'DatabasePa$$word'
[string]$sMySQLDB = 'db_test'
[string]$sMySQLHost = 'localhost'
[string]$sConnectionString = "server="+$sMySQLHost+";port=3306;uid=" + $sMySQLUserName + ";pwd=" + $sMySQLPW + ";database="+$sMySQLDB$oConnection = New-Object MySql.Data.MySqlClient.MySqlConnection($sConnectionString)
$Error.Clear()
try
{
$oConnection.Open()
}
catch
{
write-warning ("Could not open a connection to Database $sMySQLDB on Host $sMySQLHost. Error: "+$Error[0].ToString())
}# I defined a PSCustom Object for a User
$oNewUser=New-Object psobject -Property @{"username"="NewUser";"login"="login126";}
$oMYSQLCommand = New-Object MySql.Data.MySqlClient.MySqlCommand
$oMYSQLCommand.CommandText='
INSERT into `db_test`.`users` ($StringFrom) VALUES("$StringFromLog)'
$iRowsAffected=$oMYSQLCommand.ExecuteNonQuery()