Pierref1992
Member-
Content Count
21 -
Joined
-
Last visited
-
Medals
Community Reputation
1 NeutralAbout Pierref1992
-
Rank
Private First Class
-
Mysql Error Arma 3 Altis life
Pierref1992 replied to krocebow's topic in ARMA 3 - SERVERS & ADMINISTRATION
Do you have the mysql server 5.5.35 installed? Other than that I had the same issue I erased every file related to mysql and reinstalled it. -
Altis Life Server Setup - Requesting Assistance
Pierref1992 replied to Darkh0st's topic in ARMA 3 - SERVERS & ADMINISTRATION
Altis Life doesn't use iniDB it uses arma2NetMysql. -
Hello I'm trying to find out what kind of system requirement a server would need to properly host this mission. Thanks in advance :)
-
BTW is there a clothe retexture implemented yet?
-
Hello, I'm trying to find a way to add players manually (by the use of a menu/UI) to the wanted list. So far I've customed the Wanted List/Menu interface : http://gyazo.com/9fd8b8d1f927311ac4ca78436f6506cb.png (153 kB) The combobox on the bottom left has the civilian list and the one on the right contains the list of crimes (that I simply took from the wantedAdd function). I've made a new script but somehow I can't get it to work, it doesn't even launch that script. If someone can help me, it would probably cure my migraine :D
-
Error "Can't setup your session with the server" - Altis Life RPG
Pierref1992 replied to Pierref1992's topic in ARMA 3 - TROUBLESHOOTING
Ok it was an MySQL problem. It was bugged, had to reinstall MySQL then it worked. -
I think I had this problem. Have you unblocked EVERY .dll in the Arma2Net plugin (right click on the .dll > properties. At the bottom of the properties panel should be an 'Unblock' button) ? Windows tends to block them when they come from a different computer.
-
Well I'm not a pro in MySQL but I guess if you want to have more than 8 cop levels, you could modify the arma3life.sql so that it's not limited at 7. So this : `coplevel` enum('0','1','2','3','4','5','6','7') NOT NULL DEFAULT '0', Could become this : `coplevel` enum('0','1','2','3','4','5','6','7','8','9') NOT NULL DEFAULT '0', You would have it limited at 9 here (so 10 levels). I guess (not sure) you could have even more than that by adding '10','11' etc. Or you could even delete the enum but I believe it's there so that the values aren't incorrect (e.g. -1). Also if you don't wan't to modifiy the SQL database structure, I believe that only 5 cop levels (max cop level =4, or so I've seen so far) are currently being used in the mission so I would use those before adding some more...
-
My bad I solved it... It was indeed a MySQL problem, but it was a software problem... Erased everything MySQL related and it worked!!! Sorry to have bothered you guys with this totally unrelated post...
-
Hey guys, I'm trying to setup a server on my computer to test the modifications I've made. So I set it up exactly as on my working Dedi server (which works perfectly...). But when I try to load, after I see the map and should be chosing where I spawn, I get a black screen with an error message that says : "Can't setup your session with the server. You have reached the maximum tries of 3. Please reconnect" I assume this should be related to MySQL and Arma2Net because I've looked at the Arma2Net log files and I noticed that the "result" after an INSERT is "Error". I've checked the user privileges but it was allowed to use INSERT. So far I've reinstalled the MySQL Server (5.5), used different mysql users in Databases.txt, reinstalled arma 3, changed username in arma 3, but nothing works for me... It would be appreciated if someone could help me solve my problem :)
-
Hello, First of all I just want to say that this is an amazing you have done on this mission Tonic! It is a real pleasure to see a well written code like this! Big thanks man! Also I was wondering what kind of system requirement would a server need in order to properly host the mission? Would a dedi with an Intel Celeron 847 CPU (1.1GHz) and 4GB of RAM be enough to host the mission?
-
Error "Can't setup your session with the server" - Altis Life RPG
Pierref1992 posted a topic in ARMA 3 - TROUBLESHOOTING
Hello, I'm trying to setup a test server for Altis Life RPG on my own machine so that I can test my modification to the mission before releasing it to my dedicated server. Every time I try to launch the mission, it loads then there's a black screen that says "can't setup your session with the server. you have reached the maximum tries of 3. please reconnect". I googled it apparently others have been able to solve this problem by simply changing their user name but it didn't work for me. I have done the exact same steps to setup the server on my pc (Installed a 5.5 MySQL server instance, installed ArmA2Net plugin and unblocked .dll's, and I'm using the life_server expansion). So I was wondering if that wouldn't have anything to do with steam but even when I launch it as a multiplayer mission it does the exact same thing. I have even changed mysql users but it doesn't solve it... Can someone please help me, I'm out of ideas... -
Invisible Model Through Glass
Pierref1992 replied to Pierref1992's topic in ARMA 2 & OA : MODELLING - (O2)
I don't really know what you mean by this. The texture I made were the _co.paa, _smdi.paa and _nohq.paa. Didn't do anything about any alpha channel... Also, I tried the component convexity like you said but it didn't make the model appear. I also tried messing with the alpha priority but that didn't work either. I also tried the plain black texture but that wasn't working. -
Invisible Model Through Glass
Pierref1992 replied to Pierref1992's topic in ARMA 2 & OA : MODELLING - (O2)
Thanks for the link, it might always be helpuf ;) Unfortunatly I tried a few and it didn't change anything. Also I "un-linked" the texture with the model and I can now see the grey model through the window. It might not be the models but the texture. For information: I use a "super" as pixel shader in my rvmat and I made SMDI and NOHQ textures for the model. -
Invisible Model Through Glass
Pierref1992 replied to Pierref1992's topic in ARMA 2 & OA : MODELLING - (O2)
I've made convex components but I'm not sure what you mean by "validated". I also tried move to bottom on my resolution LODs but it didn't work.