Jump to content

dburke87

Member
  • Content Count

    11
  • Joined

  • Last visited

  • Medals

Community Reputation

10 Good

About dburke87

  • Rank
    Private First Class
  1. dburke87

    Arma 3 Headless Client

    Unfortunately I've done that to some degree with no luck.
  2. dburke87

    Arma 3 Headless Client

    I got my headless client setup and working fine. I run both the dedicated server and the dedicated client on the same full-box dedicated machine, and run several pairs of servers and dedicated clients on it as well. To finally get the thing working, among numerous other tricky things and changes, I had to remove the -ip=x.x.x.x startup parameter from my servers. I have no idea why, but after changing everything else, that was the final change that got the dedicated clients to actually connect to the server. Problem is, now my servers don't show up in the ArmA3 (GameSpy) server browser for more than half of my players, and out of those that can see it, some get a connection failed message when trying to join. Nothing else, just simply 'connection failed'. People are also reporting seeing pings of 2500 in the server browser, and remote connection seems to work for some, and not work for others. I also tested to see if this issue was a direct consequence of removing the -ip= parameter. First I left everything as is with the -ip param still removed, but did not boot up my headless clients. No joy. Then I added back in the -ip= param, and all players could freely join again, whether or not I started up the headless clients. Of course, with the -ip tag back in, the headless clients never connected. I tried turning my firewall off, changing rules, etc.. No luck. A little context: I run a full-box, unmanaged dedi from NFO Servers Windows Server 2012 R2 Running the dedicated server branch for the two servers and the normal client with -client for the HCs Steam is running and signed in I assigned the 1st server to ports 2300-2305, and the 2nd to 2310-2315 I have a total of 5 IPs assigned to this machine, and I was originally using the -ip= param to bind the game to a single IP If there's any more information I can provide, please let me know. Any help would be greatly appreciated.
  3. I got my headless client setup and working fine. I run both the dedicated server and the dedicated client on the same full-box dedicated machine, and run several pairs of servers and dedicated clients on it as well. To finally get the thing working, among numerous other tricky things and changes, I had to remove the -ip=x.x.x.x startup parameter from my servers. I have no idea why, but after changing everything else, that was the final change that got the dedicated clients to actually connect to the server. Problem is, now my servers don't show up in the ArmA3 (GameSpy) server browser for more than half of my players, and out of those that can see it, some get a connection failed message when trying to join. Nothing else, just simply 'connection failed'. People are also reporting seeing pings of 2500 in the server browser, and remote connection seems to work for some, and not work for others. I also tested to see if this issue was a direct consequence of removing the -ip= parameter. First I left everything as is with the -ip param still removed, but did not boot up my headless clients. No joy. Then I added back in the -ip= param, and all players could freely join again, whether or not I started up the headless clients. Of course, with the -ip tag back in, the headless clients never connected. I tried turning my firewall off, changing rules, etc.. No luck. A little context: I run a full-box, unmanaged dedi from NFO Servers Windows Server 2012 R2 Running the dedicated server branch for the two servers and the normal client with -client for the HCs Steam is running and signed in I assigned the 1st server to ports 2300-2305, and the 2nd to 2310-2315 I have a total of 5 IPs assigned to this machine, and I was originally using the -ip= param to bind the game to a single IP If there's any more information I can provide, please let me know. Any help would be greatly appreciated.
  4. dburke87

    Altis Life RPG

    I have a script which runs client-side in my Altis Life mission when a player buys a vehicle, fn_setupVehicle.sqf. The script spawns in the vehicle, captures it to a variable (_vehicle), then does several things with it. The item I'm struggling with right now is setting a variable on the vehicle. The line reads: "_vehicle setVariable["vehicle_info_owners",[[getPlayerUID player,name player]],true];". This works fine for all players currently in the mission, but it seems that JIP players are not syncing this variable. So, when I enter the mission and spawn my vehicle, "hint format["%1",vehicle getvariable "vehicle_info_owners"];" returns the array. But, if I exit the mission and come back into game, that same debug hint returns "<any>". What's more confusing, when I use the debug console to setVariable on this same vehicle, it is JIP compatible, whereas the one set by a client-side script is not. I'm lost here, unfortunately. Any ideas?
  5. dburke87

    Altis Life RPG

    -world=empty is already in there. Really just need to figure out a way to use the other cores more effectively rather than just the 2 at max, but I'm guessing that's an Arma issue and not something I can fix.
  6. dburke87

    Altis Life RPG

    I looked at my cpu core usage, and it appears that 2 of the 12 cores are maxed out. The rest barely at 10%. Any way to better utilize ALL or at least more of the cores?
  7. dburke87

    Altis Life RPG

    Yeah, I'm getting that, but I'm also just as confused by that. Again, it's the fastest VDS that NFO offers with a SSD and everything. If that can't handle 80 players, what can? (We are moving to a full-box dedi, but from what I've read, we'd only see a 20% performance boost, max) Edit: Oh, and CPU use hovers only around 30% and RAM isn't an issue, some again, I'm lost. Do you think that the cores ArmA runs on itself are just maxed out?
  8. dburke87

    Altis Life RPG

    So we're up and running and just hit 80 players for the first time today after a week and a half of being online. We have a great server with some great custom scripts, but it seems we hit a major wall around the 50 player mark. The server handles desync and the like pretty well (it's a 12-core NFO VDS with SSD), but it seems there's a point where the server just stops computing. Things like syncing, garage requests, and all other server-side execution like the federal reserve just stop or take several minutes to compute. "Server: Network message 3adfef3 is pending" messages start appearing with high frequency in the logs. Anyone pretty familiar with optimizing this mission to handle 80 players? We feel like we have the hardware to do it, but again, we're hitting a wall here. Any help would be much appreciated.
  9. dburke87

    Altis Life RPG

    Not sure about answered, but I've since learned a great deal more about Arma scripting. They're all defined in either Functions.hpp or config.cpp. ---------- Post added at 09:51 ---------- Previous post was at 09:47 ---------- I've actually found the source of this, and it's a blatant exploit. I imagine most who use this exploit aren't aware of what damage it causes to server performance (I run a 12-core, top-of-the-line NFO VDS, and I saw cycles per second drop from ~40-50 to below 1 from one person doing this). I obviously won't detail the exploit for fear of widespread use, but I've since fixed the scripts that allowed it as well as create a new script that globally broadcasts the name of the exploiter to the entire server. Tonic, I'll post some details of the exploit in a PM so that you can possibly address this in a later update. Any server admins are more than welcome to PM if they're experiencing this same issue, and I'd be glad to help.
  10. dburke87

    Altis Life RPG

    I've been noticing that our life_db_queue or whatever it's called has been filling up in the thousands. I took a look in the query log file, and it seems I'm getting an UPDATE players and SELECT FROM players spam from a single player nearly once a second. It appears to be the queries sent out by the STS_fnc_update script, which adds sync requests to the earlier mentioned queue. Again, it's a new query request coming every second or so from the same player. I know it's not malicious, because it will shift to different players including one of my fellow server owners at one point. Anyone know what could cause this? Obviously it's beginning to really hurt server performance. Here's a snippet from my .log file: Info: 23:00:03 - Received - Database: arma3life_master SQL Query: SELECT playerid, name, adminlevel, donatorlvl, cash, bankacc, reb_licenses, reb_gear, reb_pos_x, reb_pos_y, reblevel, arrested FROM players WHERE playerid='76561198081517434' Info: 23:00:07 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='85932', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:08 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:08 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='82026', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:09 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:10 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='89838', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:11 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:11 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='93744', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:12 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:13 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='101556', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:14 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:14 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='97650', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:15 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:16 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='105462', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:17 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:17 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='109368', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:18 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:19 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='113274', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:20 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:20 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='117180', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:21 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:21 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='121086', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:23 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:23 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='124992', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:24 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:24 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='128898', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:26 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:26 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='132804', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:27 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:27 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='140616', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:28 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:29 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='136710', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:30 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:30 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='148428', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:31 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:32 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='152334', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:33 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:33 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='156240', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:34 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:34 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='144522', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:36 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:36 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='160146', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:37 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:37 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='167958', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:39 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:39 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='171864', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:40 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:40 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='164052', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:42 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:00:44 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='183582', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:00:50 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:01:05 - Received - Database: arma3life_master SQL Query: UPDATE vehicles SET active='0' WHERE pid='76561198101958454' AND plate='79128' Info: 23:01:07 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='187488', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932' Info: 23:01:53 - Received - Database: arma3life_master SQL Query: SELECT name, aliases FROM players WHERE playerid='76561198069882932' Info: 23:02:43 - Received - Database: arma3life_master SQL Query: UPDATE players SET name='Hikurac', cash='175770', bankacc='208024', reb_licenses='"[[`license_reb_air`,1],[`license_reb_driver`,1],[`license_reb_boat`,1],[`license_reb_weapons`,0],[`license_reb_explosives`,0],[`license_reb_leader`,0],[`license_reb_heroin`,0],[`license_reb_marijuana`,0],[`license_reb_coke`,0]]"', reb_gear='"[``,``,[],`U_O_SpecopsUniform_ocamo`,``,``,[],[],[],[],[`hgun_Pistol_heavy_02_F`],[],[],``,``,[]]"', arrested='0', reb_pos_x='20072', reb_pos_y='6746' WHERE playerid='76561198069882932'
  11. dburke87

    Altis Life RPG

    So I'm just now really digging into all the scripting for this mod, and I'm trying to get a good grasp of where everything is. What I've noticed so far is I'm having trouble finding several functions. For example, in following the flow from init.sqf, the first occurrence of a "missing" function is in life_server/init.sqf on line 59, then on lines 65: [] spawn DB_fnc_queueManagement; //Server-side functions that need to be sent out. publicVariable "STS_fnc_addVehicle2Chain"; publicVariable "life_fnc_fedSuccess"; [] spawn STS_fnc_federalUpdate; I cannot for the life of me find these functions. Other examples are all of the life_fnc_xxx, such as life_fnc_gatherCocaine from fn_setupActions.sqf. I've found fn_gatherCocaine.sqf, but not life_fnc_gatherCocaine. Any help in locating and editing these files/functions would be greatly appreciated.
×