Jump to content

Diablox

Members
  • Posts

    182
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by Diablox

  1. Look in mangosd.conf # AlwaysMaxSkillForLevel # Players will automatically gain max level dependent (weapon/defense) skill when logging in, leveling up etc. # Default: 0 (false) # 1 (true)
  2. This one is not tested but i think it is working. http://gist.github.com/364819
  3. You will delete every single spell from all character. They even cant speek when you delete all spells. .reset spell does what you want to do.
  4. Good example would be http://www.wowhead.com/quest=12733 where you need to duel 5 npc and you can do that 5 times with one npc but if you use this then you need to duel 5 difrent npc.
  5. Now SVN-lovers can stop complaining and start doing something useful.
  6. I think item text is now stored in item_instance table and mail text is stored in new field inside mail table.
  7. 9716_01_mangos_npc_vendor.sql does not work. This is fixed version ALTER TABLE db_version CHANGE COLUMN required_9710_01_mangos_command required_9716_01_mangos_npc_vendor bit; ALTER TABLE npc_vendor DROP PRIMARY KEY, ADD PRIMARY KEY (`entry`,`item`,`ExtendedCost`);
  8. MaNGOS 9324 YTDB 533 SD2 1565 Confirmed
  9. I had over 2 weeks uptime whit avrege of 100 players (he didint crash after 2 weeks i just wanted to update the core)
  10. 1. Why you use SVN when mangos uses git? 2. Why do someone need all does commands? Is it so hard do learn mangos commands? 3. Why did you go whit 3.2.2 core when its not supported yet?
  11. I can clone on other sistems but they are all 8.10 Only thing i cant think of is that i instaled 8.10 i did dist-update to 9.04 that is what i will do on my server (or to travel 150 km and reinstall the whole sistem). BTW i downloaded source on antoher sistem copy paste it on VM server and was able to compile but i need git EDIT: Solved Just reinstall git-core
  12. I did tryed to compile openssl from source but it didnt help (maybe i did something wrong). So i need to go to 9.10
  13. I also have pkg-config installed and still geting the same error!!!!
  14. I started to think you forgot about it :D:D Good job!!! Compiling right now.
  15. Well i like the idea very much but i still cant figure out some things Where do patch testers put their reports in this case where we have several patches testig at once? How much will this help patches to get commited? And how will you select patches for adding to your repo? Dont get me wrong im just curios how will this work. Im trying to help testing but i dont have server whit enough testers
  16. Try to use more or die (mysql_error()); and you will find your problem!! I did some fixes to your code. Tested and working <?php $db_user = "root"; // MySQL username $db_pass = "protroad975"; // MySQL password $db_host = "localhost"; // MySQL Server Host $db_db = "realmd"; // Account database if(isset($_POST['submit'])) { $con = mysql_connect($db_host,$db_user,$db_pass) or die('Could not connect: ' . mysql_error()); mysql_select_db($db_db, $con); $user = $_POST['login']; $pass = $_POST['password']; $email = $_POST['email']; $pack = $_POST['expansion']; function sha_password($user,$pass) { $user = strtoupper($user); $pass = strtoupper($pass); return SHA1($user.':'.$pass); } $sha=sha_password($user,$pass); if(!$user) echo "You have not inserted your username."; else if(!$pass) echo "You have not inserted your password."; else if(!$email) echo "You have not inserted your e-mail"; else { $check = mysql_query("SELECT `username` FROM `account` WHERE `username`='".$user."' ", $con) or die (mysql_error()); if(mysql_numrows($check) > 0) echo "Account ".$user." already exists. Please Try Again"; else { $query = "INSERT INTO `account`(`username`, `sha_pass_hash`, `email`, `expansion`) VALUES ('" . mysql_real_escape_string($user) . "', '" . mysql_real_escape_string($sha) . "', '" . mysql_real_escape_string($email) . "', '" . mysql_real_escape_string($pack) . "')"; $do_query = mysql_query($query) or die (mysql_error()); if(!mysql_query($do_query)) echo "Account ".$user." has been created."; else echo "Creation of account ".$user." has failed. Please try again later."; } } @mysql_close($con); } ?> But you need to add more checks (for email, for username/password length, etc)
  17. If you set this all players will see the announce Battleground.QueueAnnouncer.Enable = 1 and if you set this only the player who enters the queue will see the announce Battleground.QueueAnnouncer.PlayerOnly = 1
  18. So even for a singlecore CPU we shoud do -j3 ??
  19. Your setings for Autobroadcast? Shoud be like this
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use