Jump to content

adriann54

Members
  • Posts

    27
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

adriann54's Achievements

Member

Member (2/3)

0

Reputation

  1. adriann54

    Mangos Coding

    Upsiieee...my bad....I think I have forgotton to edit that in config files. My vamps where extracted and assembled =D I am sorry.
  2. adriann54

    Mangos Coding

    I tried to disable PvP in Dalaran ( which I think is a Sanctuary Area ), but I couldn't manage to disable it. Original Player.cpp: if(zone->flags & AREA_FLAG_SANCTUARY) // in sanctuary { SetByteFlag(UNIT_FIELD_BYTES_2, 1, UNIT_BYTE2_FLAG_SANCTUARY); if(sWorld.IsFFAPvPRealm()) SetFFAPvP(false); } Edited Player.cpp if(zone->flags & AREA_FLAG_SANCTUARY) // in sanctuary { SetByteFlag(UNIT_FIELD_BYTES_2, 1, UNIT_BYTE2_FLAG_SANCTUARY); if(sWorld.IsFFAPvPRealm()) SetFFAPvP(false); pvpInfo.endTimer = time(0); } I also added : UpdatePvP(false);
  3. Maybe It will be implemented in MaNGOS a system for email login. I found this on Blizzard Forums : set realmlistbn "eu.logon.battle.net" -- It's using 3724 port and 1119
  4. Have you encrypted again your email.password with SHA1 ?
  5. Thank you for your response. I tried your script on my server and all services were online even if there were for real offline. Then I tried this script on a free webhosting service and I put my ip. The Result : mangosd - Operation Timed Out (Turned Off) realmd - Accepting Connections RA Console - Operation Timed Out SOAP - Operation Timed Out Apache - Accepting Connections MySQL - Operation Timed Out (No Remote Access) So I guess, is my server fold. I will reinstall it.
  6. adriann54

    Mangos Coding

    Thanks for your friendly reply. Even if didn't help me I figured out by myself where I can find them
  7. adriann54

    Mangos Coding

    Ok, thank you...I'll try to learn these syntaxes Edit: Where Can I find all of those syntaxes ?
  8. I started to learn C++ and I know a little bit. Is there any kind of tutorial on how to code this thing? For Example : if (!caster || caster->GetTypeId() != TYPEID_PLAYER) return; What of these things are doing? ( if isn't any caster or caster is not a player then return ? )
  9. Still the same, no errors. I guess my server is messed up.TE]
  10. There's no error. The script just keep sayin that the server is always online, no matter what port I am using or if the server is online or offline. <?php if(($fp = fsockopen("my_ip","8085", $enumber, $evalue, 1)) !== FALSE){ echo "Online"; fclose($fp); }else{ echo "Offline"; } echo " Enumber:".$enumber." Evalue:".$evalue; ?> Output Online Enumber:0 Evalue:
  11. Ok, I tried other ports and it's the same. Do you think is a apache-php problem ?
  12. Still tells me that the server is online. So I tried this port : 3921038210931. And it says "Online".
  13. I'm trying to make this script work but it always keeps saying that the server is online even if it's not. :-| Can someone give me a little help ?
  14. I think he did because there are 4 tables before auction table
  15. I would recommend you to reinstall your characters database. But however if you don't want to lose all of your data apply this query to your characters database : DROP TABLE IF EXISTS `auction`; CREATE TABLE `auction` ( `id` int(11) unsigned NOT NULL DEFAULT '0', `houseid` int(11) unsigned NOT NULL DEFAULT '0', `itemguid` int(11) unsigned NOT NULL DEFAULT '0', `item_template` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Item Identifier', `itemowner` int(11) unsigned NOT NULL DEFAULT '0', `buyoutprice` int(11) NOT NULL DEFAULT '0', `time` bigint(40) NOT NULL DEFAULT '0', `buyguid` int(11) unsigned NOT NULL DEFAULT '0', `lastbid` int(11) NOT NULL DEFAULT '0', `startbid` int(11) NOT NULL DEFAULT '0', `deposit` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `item_guid` (`itemguid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
×
×
  • 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