Sukkaed
Member-
Content count
31 -
Donations
0.00 EUR -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Wiki
Servers
Devblog
Everything posted by Sukkaed
-
As Arma has always had some troubles dealing with 7 digit numbers, this becomes a problem when database ID in player, construction, container or vehicle table reaches a million. Until someone bothers to add some formatting in Exile before using this number as variable in game, here is database query which will set the id numbers to start from 1 again: UPDATE construction JOIN (SELECT @number := 0) r SET id = @number:=@number +1; ALTER TABLE construction AUTO_INCREMENT = 1; UPDATE container JOIN (SELECT @number := 0) r SET id = @number:=@number +1; ALTER TABLE container AUTO_INCREMENT = 1; UPDATE player JOIN (SELECT @number := 0) r SET id = @number:=@number +1; ALTER TABLE player AUTO_INCREMENT = 1; UPDATE vehicle JOIN (SELECT @number := 0) r SET id = @number:=@number +1; ALTER TABLE vehicle AUTO_INCREMENT = 1; ...and stop the server before doing this.
-
I made this a while ago but never ended using it. If someone finds it useful feel free use. http://www.mediafire.com/file/vyo2tezzoc5bsb6/colors.rar //On mission start [] execVM "colors\colors_init.sqf"; //description.ext #include "colors\colors.hpp" //Open [] spawn UK111_fnc_colors_dialog;
-
class CraftRepairKitMetal: Exile_AbstractCraftingRecipe { name = "Craft Metal Repair Kit"; pictureItem = "Exile_Item_MetalBoard"; requiresFire = 0; requiredInteractionModelGroup = "WorkBench"; returnedItems[] = { {1, "Exile_Item_RepairKitWood"} //Change to Exile_Item_RepairKitMetal }; components[] = { {4, "Exile_Item_MetalBoard"} }; tools[] = { "Exile_Item_Foolbox", "Exile_Item_Grinder" }; };
-
Seems like you need to pbo your mission file now or it will crash.
-
Added: Support for line drawing in a map interface This is very lovely. Map is full of huge dicks already or painted in black completely. No1 troll tool.
-
SQL1_1 = DELETE FROM garage WHERE id= ?
-
You need to have at least one recording device enabled in windows or direct wont work.
-
Run this with windows scheduler. SET BackupDir="C:\path\to\backup\folder\" SET mysqldir="C:\wamp\bin\mysql\mysql5.6.17\bin\" SET mysqlschema=yourdatabasename SET mysqluser=yourdatabaseuser SET mysqlpassword=userpassword for /F "usebackq tokens=1,2 delims==" %%i in (`wmic os get LocalDateTime /VALUE 2^>NUL`) do if '.%%i.'=='.LocalDateTime.' SET ldt=%%j set datestamp=%ldt:~0,4%-%ldt:~4,2%-%ldt:~6,2%.%ldt:~8,2%-%ldt:~10,2%-%ldt:~12,2% c: cd %mysqldir% mysqldump -u %mysqluser% -p%mysqlpassword% --databases %mysqlschema% --routines --events --triggers --quick >%BackupDir%\%mysqlschema%_backup.%datestamp%.sql
-
Using cusrsorTarget is really bad idea. You can pass the object from CfgInteractionMenus. action = "_this execVM 'Scripts\Bike\Pack_bike.sqf';"; and delete.. deleteVehicle (_this select 0);
-
I believe this is caused by infistar. Not sure is there update for this patch yet.
-
Chernarus Building Replacement Script (Updated Dec 2017)
Sukkaed replied to JakeHekesFists's topic in Maps
I'm more worried about performance drop that comes from this as there is big difference between original map buildings and buildings spawned with createVehicle. -
Chernarus Building Replacement Script (Updated Dec 2017)
Sukkaed replied to JakeHekesFists's topic in Maps
Have you checked how many objects this creates on Chernarus? -
Hop to our TS on weekend and I can poke you to right direction if you want.
-
SyS servers are really cheap compared to OVH and only reason I'm with OVH is their DDOS protecion which is must these sad days. How can you install windows with RDP? or was there option to use your own key in control panel?
-
I thought that you cannot have Windows on So You Start servers?
-
... nvm
-
Fails to install? * Activation of http://msrcon.com/MSRcon.application resulted in exception. Following failure messages were detected: + Downloading http://46.101.49.141/msrcon/Application Files/MSRcon_1_2_0_2/MSRcon.exe did not succeed. + The underlying connection was closed: An unexpected error occurred on a receive. + Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host.
-
https://trello.com/b/wmSwKsLV/public-exile-development
-
Who is the first brave enough to run it
-
Running perf 10 now and no crashes so far. Wouldn't be surprised at all if it's BE tho.
-
Also happens with different memory allocators so it's probably not that.
-
ALTER TABLE account ALTER COLUMN money SET DEFAULT 1000;