Stizz08
Member-
Content Count
5 -
Joined
-
Last visited
-
Medals
Community Reputation
10 GoodAbout Stizz08
-
Rank
Rookie
-
Don't you fret, friend. I'll get it working for you. ;)
-
Let me test this really quick on my server and i'll let you know if it works and give you the script to input. Seems pretty simple.
-
If it does not read @Arma2NET, your server will hang and crash. It needs to be able to connect to a MySQL database and find those files for it to work properly. Make sure you added @Arma2NET to your shortcut for your server (IE: -mod=@life_server;@Arma2NET) ---------- Post added at 07:23 ---------- Previous post was at 07:20 ---------- Jumping and leaping is an addon. Found here: http://forums.bistudio.com/showthread.php?152312-Jump-MF-basic-mod-to-unlock-vaulting-animation. I will find a way to incorporate it into Altis Life and get back to you on that.
-
3. Did you change the Server Side Variable and the Shop files? There are quite a bit of files you have to change to get the visible prices. 4. What do you mean a gangster? Bounty, no bounty? ---------- Post added at 07:06 ---------- Previous post was at 06:56 ---------- For the skins, I uploaded them to the root directory of the mission file. Probably not the best idea, but it works. I then added the texture file under fn_vehicleColorCfg.sqf case "C_SUV_01_F": { _ret = [ ["\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_co.paa","civ"], ["\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_02_co.paa","cop"], ["\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_03_co.paa","civ"], ["\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_04_co.paa","civ"], ["#(ai,64,64,1)Fresnel(1.3,7)","cop"], ["police_suv.paa","cop"] ]; }; For this to show up for purchase at the shops, you need to configure it correctly under fn_vehicleColorStr.sqf, like so. case "C_SUV_01_F": { switch (_index) do { case 0: {_color = "Dark Red";}; case 1: {_color = "Black";}; case 2: {_color = "Silver";}; case 3: {_color = "Orange";}; case 4: {_color = "Unmarked (Black)";}; case 5: {_color = "Police";}; }; }; and it should now show up for purchase at your shop! ---------- Post added at 07:11 ---------- Previous post was at 07:06 ---------- Check the config files for your Vehicle List. There may be a missing comma. If there are any errors whatsoever, it won't run the SQF file. ---------- Post added at 07:13 ---------- Previous post was at 07:11 ---------- To add custom vehicles to your server, you need to do an Arma3Sync file from what I understand. To add normal Arma 3 vehicles (Blackfoot, T-100, etc...) you put the class name under the Vehicle Shop files in under core/config. ---------- Post added at 07:17 ---------- Previous post was at 07:13 ---------- Wrong password? Blocked Port? Did you check the perms for the mysql user and database? Turn it off and on again? ---------- Post added at 07:18 ---------- Previous post was at 07:17 ---------- Put the mission pbo in your game Arma 3 MPMissions folder. Open the editor and load it. As for the prices, they are scattered through the script. Cars and weapons will be found in certain SQF files under core/config.
-
Need help setting up Altis Life database for my server
Stizz08 replied to Capt.Fitz's topic in ARMA 3 - SERVERS & ADMINISTRATION
You need a MySQL server. It cannot run on iniDB. For your Player Menu, look under your Key Handlers file. It should say something like this: //Y Player Menu case 21: { if(!_alt && !_ctrlKey && !dialog) then { [] call life_fnc_p_openMenu; }; }; As for your Vilayer Host, you need to see if you can get a host that will make you a MySQL database and give you FTP Access. I have tried running it on a host and I finally just got my own box. Each works perfectly.