I've tried just about everything went into my protocol and configured everything and applied and even went on my router and put all of my ports in the right areas 80to80 7575 to 7584 8484 to 8484 3306 to 3306 still the ports wont connext my router is a netgear WNDR3800 any help would be nice please.
↧
[Help]I can't portforward
↧
who known this client wich one can played the game.
this is the client link;http://www.gamershell.com/download_96309.shtmlcan be used this server
http://forum.ragezone.com/f699/guide...-files-832494/?
http://forum.ragezone.com/f699/guide...-files-832494/?
↧
↧
[help]
Hello everyone,
So i have tried to mess up with my database to make the mobs drop nova, and it worked ,
But i couldnt manage it to make it drop like NOVA.
Anyone have any ideea how do i setup or wich is the best way to setup the nova drop,
by using the table wich you set up your group for the mob, or the table where you just input your RefItemId .
So i have tried to mess up with my database to make the mobs drop nova, and it worked ,
But i couldnt manage it to make it drop like NOVA.
Anyone have any ideea how do i setup or wich is the best way to setup the nova drop,
by using the table wich you set up your group for the mob, or the table where you just input your RefItemId .
↧
[Help] Max lvl 1000 to 400
Version is 97d+99i
I'm trying to change my server max lv to 400 but i experience too much problems with hex code, when i change my server didnt start, so i think im changing something wrong, if anyone can give me a help with that.
GameServer.rar
I'm trying to change my server max lv to 400 but i experience too much problems with hex code, when i change my server didnt start, so i think im changing something wrong, if anyone can give me a help with that.
GameServer.rar
↧
[Darkeden667] Team Recruitment
Hey Guys and Gals,
I've currently came across working DarkEden 6.67 files and I'm wanting to continue developing on them. It's turning out to be a lot more work than I expected it would be. I'm in dire need of a few testers as well as a photoshop savvy person who can do some graphic work for me client side. I will update this thread as the community grows and I need more users/gms.
Graphic Designer(s) 0/1
Tester(s) 0/2
How can i apply?
Fill out the application below and either post it on here or send me an inbox with the application in it.
Staff Application
Name:
Age: (Must be 15+)
Country: (Must speak full english)
Skills:
Position: (Position you are applying for)
Online Hour(s):
How long have you played DarkEden 6.67?
How well do you know DarkEden 6.67?
(Graphic Designers)
Recent Work:
The theme will be slayer vs. vampire as the game is. How well will you be able to depict this?
(If you've played other servers)
What features have you seen in other servers that you really enjoyed?
I've currently came across working DarkEden 6.67 files and I'm wanting to continue developing on them. It's turning out to be a lot more work than I expected it would be. I'm in dire need of a few testers as well as a photoshop savvy person who can do some graphic work for me client side. I will update this thread as the community grows and I need more users/gms.
Graphic Designer(s) 0/1
Tester(s) 0/2
How can i apply?
Fill out the application below and either post it on here or send me an inbox with the application in it.
Staff Application
Quote:
Name:
Age: (Must be 15+)
Country: (Must speak full english)
Skills:
Position: (Position you are applying for)
Online Hour(s):
How long have you played DarkEden 6.67?
How well do you know DarkEden 6.67?
(Graphic Designers)
Recent Work:
The theme will be slayer vs. vampire as the game is. How well will you be able to depict this?
(If you've played other servers)
What features have you seen in other servers that you really enjoyed?
↧
↧
php help PLz
Can Someone Look at my code and tell me what is wrong
My insturctor says that we are creating a bog report system
When you click Create bug > it takes you to a form to create a bug then when you click submit it suppose to create a table in a database that is already created and fields here is my code for that
Now after that there should be a link that you can click on that views all the bugs you have created in the sql on a table
here is my code
BTW forgot to mention that the cofig file is just a connector to the database
MY question is for some reason when i go to view all the bugs nothing shows up just numbers
i really dont know the error i did here
My insturctor says that we are creating a bog report system
When you click Create bug > it takes you to a form to create a bug then when you click submit it suppose to create a table in a database that is already created and fields here is my code for that
PHP Code:
<?php $required = array('bdesc', 'ldesc', 'actaken');
$error = FALSE;
foreach($required as $field){
if (empty($_POST[$field])){
$error = TRUE;
}
}
if ($error){
echo "All Fields are required.";
echo "<p><a href ='NewBug.php'>Click here to go back</a></p>";
}else {
include ('config.php');
if ($dbconnect !== FALSE) {
$Tablename = "4530ceevulukwu";
$SQLstring = "SHOW TABLES LIKE '$Tablename'";
$QueryResult = Mysql_query($SQLstring,$dbconnect);
if (mysql_num_rows($QueryResult) == 0){
$SQLstring = "CREATE TABLE 4530ceevulukwu (ticketID SMALLINT NOT NULL AUTO_INCREMENT PRIMARY KEY, bdesc CHAR(80), ldesc CHAR(100), actaken CHAR(100))";
$QueryResult = Mysql_query($SQLstring, $dbconnect);
if ($QueryResult === FALSE)
echo "<p> Unable to create the reporting system table.</p>"."<p>Error Code" .mysql_errno($dbconnect). ":" .mysql_error($dbconnect) . "</p>";
else
echo "<p> sucessfully created the the reporting table.</p>";
}
$SQLstring = "INSERT INTO $Tablename (bdesc, ldesc, actaken) VALUES ('$bdesc', '$ldesc', '$actaken')";
$QueryResult = Mysql_query($SQLstring, $dbconnect);
if ($QueryResult === FALSE) {
echo "<p> unable to insert the values into the report table.</p>"."<p> Error code" .mysql_errno($dbconnect).":" . mysql_error($dbconnect) . "</p>";
}else {
$ticketID = mysql_insert_id($dbconnect);
echo "<h1>Entry Saved</h1>\n";
echo "<p>Robo System assigned your ID as $ticketID.</p>\n";
echo "<p><a href='Project4.php'>Back to Bug Main Page</a></p>";
}
mysql_close($dbconnect);
}
}
?>
Now after that there should be a link that you can click on that views all the bugs you have created in the sql on a table
here is my code
PHP Code:
<?php
include ('config.php');
if ($dbconnect !== FALSE){
$Tablename = "4530ceevulukwu";
$SQLstring = "SELECT * FROM $Tablename";
$QueryResult = mysql_query($SQLstring);
if ($QueryResult === FALSE)
echo"<p> unable to execute the query.</p>". "<p>Error code". mysql_errno($dbconnect). ":". mysql_error($dbconnect). "</p>";
echo "<table width ='100%' border='1'>\n";
echo "<tr><th>ID</th><th>Brief Description</th><th>Long Description</th><th>Resolution/Action Taken</th></tr>\n";
while (($Row = mysql_fetch_array($QueryResult))) {
echo "<tr><td>".$Row['ticketID']."</td><td>". $Row['bdesc']."</td><td>".$Row['ldesc']."</td><td>".$Row['actaken']. "</td></tr>\n";
}
echo "</table>\n";
echo "<p><a href='Project4.php'>Back to Bug Main Page</a></p>";
mysql_close($dbconnect);
}
?>
MY question is for some reason when i go to view all the bugs nothing shows up just numbers
i really dont know the error i did here
↧
does not work "nextpreviousspawn" v142
on any map who are enemies, I have to defeat all the enemies to re-invoke
and fix this error or any code of operation is used, it may be outdated, could you tell me what is?
would greatly appreciate your support
thanks
and fix this error or any code of operation is used, it may be outdated, could you tell me what is?
would greatly appreciate your support
thanks
↧
Fix erro 'Final\r3dLibF.pch'
I'm trying to compile my source but I have some errors
Anyone know how to fix this error?
Code:
Erro 6 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\atlasDesc.cpp 1 Eternity
Erro 7 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dEternityWebBrowser.cpp 6 Eternity
Erro 8 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\HWInfo.cpp 1 Eternity
Erro 9 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\UndoHistory\UndoHistory.cpp 1 Eternity
Erro 10 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\SF\Console\EngineConsole.cpp 1 Eternity
Erro 11 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\SF\CmdProcessor\CmdVar.cpp 1 Eternity
Erro 12 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\SF\Console\Config.cpp 1 Eternity
Erro 13 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\SF\CmdProcessor\CmdProcessor.cpp 1 Eternity
Erro 14 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\SF\CmdProcessor\CmdEvent.cpp 1 Eternity
Erro 15 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\SF\CmdProcessor\CmdConsole.cpp 1 Eternity
Erro 16 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\SF\CmdProcessor\CmdCommands.cpp 1 Eternity
Erro 17 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\SF\script.cpp 1 Eternity
Erro 18 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\UI\UIimEdit2.cpp 1 Eternity
Erro 19 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\SF\RenderBuffer.cpp 1 Eternity
Erro 20 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\UI\UIimEdit.cpp 1 Eternity
Erro 21 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\UI\UIElements.cpp 1 Eternity
Erro 22 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\UI\UICurveEditor.cpp 1 Eternity
Erro 23 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\UI\r3dMenu.cpp 1 Eternity
Erro 24 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\Tsg_stl\TString.cpp 1 Eternity
Erro 25 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\FileSystem\r3dFSCompress.cpp 1 Eternity
Erro 26 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\WinMain.cpp 1 Eternity
Erro 27 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\FileSystem\r3dFileSystem.cpp 1 Eternity
Erro 28 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\VShader.cpp 1 Eternity
Erro 29 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\TimeGradient.cpp 1 Eternity
Erro 30 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\timer.cpp 1 Eternity
Erro 31 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dVCacheOptimize.cpp 1 Eternity
Erro 32 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\StackWalker.cpp 26 Eternity
Erro 33 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dVCacheAnalyze.cpp 1 Eternity
Erro 34 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dUtilsDraw2D.cpp 1 Eternity
Erro 35 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dUtilsFilters.cpp 1 Eternity
Erro 36 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dUtils3D.cpp 1 Eternity
Erro 37 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dUtils.cpp 2 Eternity
Erro 38 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dTex.cpp 1 Eternity
Erro 39 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dSys_WIN.cpp 1 Eternity
Erro 40 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dString.cpp 1 Eternity
Erro 41 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dStats.cpp 1 Eternity
Erro 42 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dSpline.cpp 1 Eternity
Erro 43 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dSphere.cpp 1 Eternity
Erro 44 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dSkeleton.CPP 1 Eternity
Erro 45 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dSkin.CPP 1 Eternity
Erro 46 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dRender.CPP 1 Eternity
Erro 47 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dRay.cpp 1 Eternity
Erro 48 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dProfilerRender.cpp 1 Eternity
Erro 49 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dProfiler.cpp 1 Eternity
Erro 50 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dProtect.cpp 1 Eternity
Erro 51 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dProfileDataRecorder.cpp 6 Eternity
Erro 52 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dPoint.cpp 1 Eternity
Erro 53 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dPoly.cpp 1 Eternity
Erro 54 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dObjLS.cpp 1 Eternity
Erro 55 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dObj.cpp 1 Eternity
Erro 56 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dNetwork.cpp 1 Eternity
Erro 57 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dMath.cpp 1 Eternity
Erro 58 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dMeshTexDensityVisualizer.cpp 6 Eternity
Erro 59 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dMat.cpp 1 Eternity
Erro 60 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dLight.cpp 1 Eternity
Erro 61 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dIniFile.cpp 1 Eternity
Erro 62 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dInput.cpp 1 Eternity
Erro 63 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dGeoSphere.cpp 1 Eternity
Erro 64 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dHash.cpp 1 Eternity
Erro 65 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dFileMan.cpp 1 Eternity
Erro 66 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dFileTracker.cpp 1 Eternity
Erro 67 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dDeviceQueue.cpp 1 Eternity
Erro 68 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dD3DCache.cpp 1 Eternity
Erro 69 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dDebug.cpp 1 Eternity
Erro 70 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dCubeMap.cpp 2 Eternity
Erro 71 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dCylinder.cpp 1 Eternity
Erro 72 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dConePrim.cpp 1 Eternity
Erro 73 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dCone.cpp 1 Eternity
Erro 74 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dColor.cpp 1 Eternity
Erro 75 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dChamferBox.cpp 1 Eternity
Erro 76 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dCam.cpp 1 Eternity
Erro 77 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dBudgeter.cpp 1 Eternity
Erro 78 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dBuffer.cpp 1 Eternity
Erro 79 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dBitMaskArray.cpp 1 Eternity
Erro 80 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dBackgroundTaskDispatcher.cpp 6 Eternity
Erro 81 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3dAnimation.CPP 1 Eternity
Erro 82 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\r3d.cpp 1 Eternity
Erro 83 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\PShader.cpp 1 Eternity
Erro 84 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\Pipeline.cpp 1 Eternity
Erro 85 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\Particle.cpp 1 Eternity
Erro 86 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\JobChief.cpp 1 Eternity
Erro 87 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\MeshGlobalBuffer.cpp 1 Eternity
Erro 88 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\d3dFont.cpp 8 Eternity
Erro 89 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\CVar.cpp 1 Eternity
Erro 90 fatal error C1859: 'Final\r3dLibF.pch' unexpected precompiled header error, simply rerunning the compiler might fix this problem c:\Users\zwoorelook\Desktop\GeneseeGames\Developments MMO & MMORPG\Developments WarZ\Soucer\invasionMMO\src\Eternity\Source\BezierGradient.cpp 1 Eternity
↧
[v83] MapleAffinity

Server Information:
- Version: 83
- Rates: 1000x/500x/3x
- VPS Hosted
- Released March 9th 2013.
Staff Team:
- Imperative||Danny - Founder
- Ryan: Admin
- Ethan - Co-Owner
- Lexi - Head Game Master
- Mabel - Game Master
Features:
- v140 Styles/Items
- Equip upgrader
- President System
- Nx from mobs
- Beginner training map
- PVP
- FM Boss Spawner
- Working rings
- AutoMeso/AutoJob/AutoRB
- More/Organized Commands
- Daily rewards
- Multiple Currencies
- AntiKS
- Game room with rewards
- Job advance/switch
- Medal/Chair Gachapon
- Custom Starter Pack
- Jump quest system
- Coming soon: Donor Map, PVP Rewards, Factions, PQ's.
- And many more!
Links:
Some Screenshots:




Join today!
↧
↧
[Help] PlusEMU Revision II AKIIX Client Issue?
Hello, I'm using illumina CMS with Plus Emu Rev II (AKIIX EDITION).
My problem is when I load the client it load the habbo logo then stays black (doesn't connect to emu), please help
EMU folder: http://prntscr.com/30wlep Client: http://prntscr.com/30wqkw
My problem is when I load the client it load the habbo logo then stays black (doesn't connect to emu), please help
EMU folder: http://prntscr.com/30wlep Client: http://prntscr.com/30wqkw
↧
[Request] DB 2.2.3.2 with extension .bak
anyone can help me ?
i have DB 2232 fresh by fyurith but i can't restore that DB on the my SQL because that file DB 2232 fresh by fyurith is not .bak extension but file extension ,
i have rename that file from file be .bak but after i restore it again , i have failed ! because that file is not .bak
anyone can give me DB 2232 with .bak extension
Thanks Before
#sorry Bad English
i have DB 2232 fresh by fyurith but i can't restore that DB on the my SQL because that file DB 2232 fresh by fyurith is not .bak extension but file extension ,
i have rename that file from file be .bak but after i restore it again , i have failed ! because that file is not .bak
anyone can give me DB 2232 with .bak extension
Thanks Before
#sorry Bad English
↧
[Help] Are adding customs to Plus R2 impossible now? Or..
Are adding customs impossible now or is it just because of the new catalogue that the sqls won't work..
If it's another reason other than the catalogue sqls, can you please explain it to me? :blushing:
If it's another reason other than the catalogue sqls, can you please explain it to me? :blushing:
↧
MTA - United Gaming Roleplay Script
↧
↧
VVarZ Alpha V2
V2 is out on VVarZ Beta Release is almost there. We just need to fix a phew more bugs But Till then We are still in Alpha Phrase.
We strive to program a emulator That Is not p2w in any way.
You start with 100 gc and everything costs In game cash
You can get cash easy by killing zombies.
You find guns by going around the map Looting I hate When Zombies Drop weapons / ammo makes the time adding new lootbox's / spawns around the map lazy.
atm you can find cars but there are a phew bugs and you might crash sometimes but I fixed majority of the Crash's for cars / Logging in.
You cannot ghost In the map You will get teleported to the nearest spawn point.
New spawn points will be added later in the Updated release.
Gun spawns are changed once a week along with the med spawns / Food spawns.
Sniper rates are fair But will not spawn constantly.
I hate when all you hear in the game is sniper rifles.
But as well as that Cars should spawn at a fair rate so Its not impossible But its a uncommon chance.
Gc Special backpacks Are spawned along the map and carry 600kg of Weight and holds as much as a mili ruck.
Those are extremely rare :D
We mainly focus on fixing bugs So don't expect A lot of content updates So just deal with what you got at the Moment.
To play the server Go towww.ogcomm.li/forums/index.php
From looting Ridgeway On triple Loot weekend this is what i got. / found.
On coming members will be Getting Legendary Rank When we are out of alpha and into Beta!
![]()
We strive to program a emulator That Is not p2w in any way.
You start with 100 gc and everything costs In game cash
You can get cash easy by killing zombies.
You find guns by going around the map Looting I hate When Zombies Drop weapons / ammo makes the time adding new lootbox's / spawns around the map lazy.
atm you can find cars but there are a phew bugs and you might crash sometimes but I fixed majority of the Crash's for cars / Logging in.
You cannot ghost In the map You will get teleported to the nearest spawn point.
New spawn points will be added later in the Updated release.
Gun spawns are changed once a week along with the med spawns / Food spawns.
Sniper rates are fair But will not spawn constantly.
I hate when all you hear in the game is sniper rifles.
But as well as that Cars should spawn at a fair rate so Its not impossible But its a uncommon chance.
Gc Special backpacks Are spawned along the map and carry 600kg of Weight and holds as much as a mili ruck.
Those are extremely rare :D
We mainly focus on fixing bugs So don't expect A lot of content updates So just deal with what you got at the Moment.
To play the server Go towww.ogcomm.li/forums/index.php
From looting Ridgeway On triple Loot weekend this is what i got. / found.
On coming members will be Getting Legendary Rank When we are out of alpha and into Beta!

↧
Help me! Error
LOGSS
Code:
000000.006| r3dFS: there is no volume file wo_00.bin
000000.006| Connecting to master server at 127.0.0.1:34000
000000.006| r3dNetwork: Creating client
000000.146| IP: 23.239.75.136
000000.147| r3dNetwork: connecting to 127.0.0.1:34000
000000.147| waiting: connecting, 10.0 sec left
000000.178| r3dNetwork: external ip: 127.0.0.1:65181
000000.178| Game: Initializing with 32 players
000000.178| Server time is Fri Sep 24 04:50:00 2027
000000.178| CAsyncApiMgr starting
000000.179| Starting server on port 34011
000000.179| r3dNetwork: Creating host at port 34011
000000.305| IP: 23.239.75.136
000000.318| Getting shop data
000000.453| WO_API: returned http500
000000.454| GetShopData FAILED, code: 8
000000.454| Reading game rewards
000000.471| WO_API: returned http500
000000.471| ApiGetDataGameRewards FAILED, code: 8
000000.472| !!! ERROR: failed to get game rewards
000000.472| !!! crashed
000000.472| Creating minidump at logss\GS_1000004243993.dmp
000000.663| Minidump created.
SUPERVISORSERVER
Code:
[SupervisorServer]
externalIp = 127.0.0.1
masterIp = 127.0.0.1
masterPort = 34000
serverName = local
serverGroup = 1
maxPlayers = 600
maxGames = 5
uploadLogs = 0
portStart = 34010
gameServerExe = WZ_GameServer.exe
webAPIDomainIP = localhost
webAPIDomainBaseURL = /WarZ/api/
webAPIDomainPort = 443
webAPIDomainUseSSL = 1
webAPIServerKey = bvx425698dg6GsnxwedszF
MASTERSERVER
Code:
[MasterServer]
masterPort=34000
clientPort=34001
masterCCU=20
serverId=1
supervisorCoolDownSeconds=15
[WarZGames]
numGames = 0
maxPlayers = 32
[PermGame2]
map = MAPID_WZ_Colorado DOESNOTHING GBNET_REGION_US_West 0 0
data = 32 0 0
name = RaGEZONE
GAME.ini
Code:
d_walk_speed_scale 5
d_sun_rotate 0
r_near_plane 0.5
r_far_plane 64000
r_cloud_lod_start 9000
r_cloud_lod_end 15000
g_serverip 127.0.0.1
g_api_ip 127.0.0.1
↧
Api problem! (Allright Source) Launcher try1, try2, try3 .. can someone help ? :)
Can someone help?
When i open my launcher it says "checking for new updater" then try1 try2 and so on any fix ??? :)
When i open my launcher it says "checking for new updater" then try1 try2 and so on any fix ??? :)
↧
Need the best fixed and working Allright Source tutorial :) pls help me
Need the best working and best fixed allright source code :)
↧
↧
Who knows how to have all loading screen to work in Phoenix II client?
Can someone give me Loading screen names for Phoenix client 2, My issue is only loading screens that load is loading_adult and loading_teen and problem is loading_1 and loading_3 doesn't load when entering game, only one works when entering game is loading_ any help puld be appreciate it.
thanks.
thanks.
↧
[Discussion] Must the new UI have to use furnidata.xml? And not .txt?
Just wondering, does it HAVE to be used? Like is something defining it in the Habbo.SWF or emulator where it must use a .xml file? Or can it changed to use a .txt file?
↧
fatal error c1083: cannot open source file '.
fatal error c1083: cannot open source file '.\Source\ccrc32.cpp': No such file or directory
When i trying do rsbuild and starting relase i got this msg, anybody now maybe how to repair ?
When i trying do rsbuild and starting relase i got this msg, anybody now maybe how to repair ?
↧