-
Content count
185 -
Donations
0.00 EUR -
Joined
-
Last visited
-
Days Won
1
Renegade2k6 last won the day on December 23 2016
Renegade2k6 had the most liked content!
Community Reputation
88 ExcellentAbout Renegade2k6
-
Rank
Capo
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Added Community skins from All Things Arma 3 https://www.facebook.com/groups/atarma3/ Gallery can be found here https://www.facebook.com/pg/ren2k6YT/photos/?tab=album&album_id=694941120712568
-
Improved the Strider Skins Gallery can be found here https://www.facebook.com/pg/ren2k6YT/photos/?tab=album&album_id=694941120712568
-
Added to A3 Launcher http://support.launcher.eu/topic/513/request-r2k6-texture-pack-for-exile
-
I have a ton of skins =)
http://steamcommunity.com/sharedfiles/filedetails/?id=838255502
-
cybermiliko started following Renegade2k6
-
The only other thing you can do is use Nitrado support system and Ill see if I can pick the ticket up from the system.
-
and no them instructions are outdated. It is done automatically now via switch game.
-
Whats your username on Nitrado, Ill take a look. PM me it please. My credentials in case your unsure. https://board.nitrado.net/user/136135-renegade2k6/
-
Renegade2k6 changed their profile photo
-
What issues are you having? Maybe I can help.
-
Most likely will be adding Humming Bird skins next. Then will build on what I have already done.
-
Started to add Hatchback skins class Duke_Hatchback_Pokemon class R2K6_Exile_Hatchback_Weed class R2K6_Exile_Urban_Camo class R2K6_Exile_Hatchback_Blue_Pattern class R2K6_Exile_Hatchback_Winter_Camo
-
https://github.com/Choppra/ExilePHPAdminTools/blob/master/navbar.php - Change to suit your servers. https://github.com/Choppra/ExilePHPAdminTools/blob/master/includes/condb.php - You have to change add/remove servers, and set default at the bottom Example for 2 servers condb.php <?php error_reporting( E_ALL & ~E_DEPRECATED & ~E_NOTICE ); ob_start(); session_start(); switch ($_SESSION['dbase']) { case "CHERNARUS": function connectdb(){ define('DB_DRV', 'mysql'); define('DB_SRV', '127.0.0.1'); define('DB_USR', 'Exile'); define('DB_PSW', ''); define('DB_DB', 'exile_chernarus'); $dbopt = array( PDO::ATTR_PERSISTENT => FALSE, PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION, PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8', ); $connectdb = new PDO(DB_DRV.':host='.DB_SRV.';dbname='.DB_DB, DB_USR, DB_PSW, $dbopt); return $connectdb; } break; case "TANOA": function connectdb(){ define('DB_DRV', 'mysql'); define('DB_SRV', '127.0.0.1'); define('DB_USR', 'Exile'); define('DB_PSW', ''); define('DB_DB', 'exile_tanoa'); $dbopt = array( PDO::ATTR_PERSISTENT => FALSE, PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION, PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8', ); $connectdb = new PDO(DB_DRV.':host='.DB_SRV.';dbname='.DB_DB, DB_USR, DB_PSW, $dbopt); return $connectdb; } break; default: function connectdb(){ define('DB_DRV', 'mysql'); define('DB_SRV', '127.0.0.1'); define('DB_USR', 'Exile'); define('DB_PSW', ''); define('DB_DB', 'exile_tanoa'); $dbopt = array( PDO::ATTR_PERSISTENT => FALSE, PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION, PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8', ); $connectdb = new PDO(DB_DRV.':host='.DB_SRV.';dbname='.DB_DB, DB_USR, DB_PSW, $dbopt); return $connectdb; } break; } ?> navbar.php <?php //MUST BE ON EVERY PAGE, I PUT IT HERE ASSUMING THAT YOU WILL HAVE THE MENU ON EVERY PAGE //MUST BE WITH THE DATABASE FORM AS WELL if(!isset($_SESSION['dbase'])){ //DATABASE1 SHOULD BE THE DEFAULT DATABASE WITH THE WEB ACCOUNT INFORMATION $_SESSION['dbase'] = "CHERNARUS"; //default databse to load } if(isset($_GET['changedb'])){ $_SESSION['dbase'] = $_GET['changedb']; header("Location: " . $_SERVER["PHP_SELF"]); } ?> <nav class="navbar navbar-default"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand"> <img style="max-width:100px; margin-top: -7px;" src="./images/atd.png"> </a> </div> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li><a href="index.php">HOME</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">TOOLS<span class="caret"></span></a> <ul class="dropdown-menu"> <li><a href="accounts.php">ACCOUNTS</a></li> <li><a href="clans.php">CLANS</a></li> <li><a href="poptabs.php">POPTABS</a></li> <div class="divider"></div> <li><a href="territories.php">TERRITORY LIST</a></li> <li><a href="deletedbases.php">TERRITORIES DELETED</a></li> <li><a href="stolenbases.php">TERRITORIES STOLEN</a></li> <div class="divider"></div> <li><a href="dupers_trader.php">DUPERS CHECK (TRADER)</a></li> <li><a href="dupers_waste.php">DUPERS CHECK (WASTE)</a></li> <div class="divider"></div> <li><a href="logs.php">SERVER LOGS</a></li> <!-- <li><a href="rcon.php">VIEW & REMOVE BANS</a></li> --> </ul> </li> </ul> <form action="playerinfo.php" method="post" class="navbar-form navbar-left"> <div class="form-group"> <input name="pid" type="text" class="form-control" placeholder="Enter Player ID..." required> </div> <button type="submit" class="btn btn-success">SEARCH</button> </form> <!--FORM WITH THE DATABASE CHANGE, ADD IT TO MENUWITHSEARCH AS WELL--> <ul class="nav navbar-nav navbar-right" style="margin-top:8px;"> <form> <select name="changedb" class="form-control" onchange="this.form.submit()"> <option value="" selected="selected" disabled>ACTIVE: <?php echo $_SESSION['dbase'] ?></option> <option value="CHERNARUS">CHERNARUS</option> <option value="TANOA">TANOA</option> </select> </form> </ul> <!--END OF NEW CODE--> </div> </div> </nav> <script type="text/javascript"> function setValue() { document.getElementById('changedb').value = "new value here"; } </script> Can't remember off the top of my head if I changed anything else =(
-
New vehicles Thnxs to @theduke //DUKE class Duke_Exile_Offroad_Jurrasic_Park_Armed class Duke_Exile_Offroad_Jurrasic_Park class Duke_Exile_Offroad_Toyota_Armed class Duke_Exile_Offroad_Toyota class Duke_STRIDER_TMNT class Duke_Suv_Subaru class Duke_Suv_Falken class Duke_Suv_redbull
-
Sure upload me the skin template, pm me the link, what you want it to be called and who to credit for it. @theduke
-
Remove or // out []execVM "Snow\retextCar.sqf"; from the fn_init.sqf then Remove or // out _retextureOn = true ; in fn_settings.sqf
-
I saw his site yesterday, he is selling everyone's work =(