Jump to content

jahangames

Members
  • Posts

    36
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by jahangames

  1. Hello, I tray to run it on the Apache2 on Debian 6 , but i have error : Not Found The requested URL /search.xml was not found on this server. Apache/2.2.16 (Debian) Server at XXX.XX.18.16 Port 80 Can any one give my PHP & Apache Config for armory ? and did you fix problem in wive in ie ? i have this error on ie : The XML page cannot be displayed Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later. -------------------------------------------------------------------------------- The system cannot locate the object specified. Thank you
  2. I Add Extended Cost in ItemExtendedCost.dbc but in Vendor not show Icon Count & Extended Cost ! Why ?
  3. In Berserker stance not to be red damage.
  4. i check in rev 10150 but we don't have red damage !
  5. Class Warrior , when use 2 Two-Hand , in character info © have a red Damage . I check it in 3 case : 1 - Battle Stance / 2 - Defensive Stance / 3 - Berserker stance . i use last rev mangos , This problem from core ?
  6. 1 - when use some parameters to filter who is online , Like 80 or name for player's always fake player's it's come in list. 2 - when player add the fake player in friend , it's will be offline.
  7. In Who List View Horde & Alliance player together , Just for Fake player ?!
  8. Client Crash Dump : http://paste.org/pastebin/view/21425
  9. in some area Client it's Crash , i install again WoW , but Same problem Client it's Crash. Example : X: -3219.14 Y: -12607.5 Z: 38.183 map: 530 !
  10. i tried so match , but i have error in compiling !!!
  11. i use rsa repo , i speak with him , he told me it's not from his Core !!!
  12. i use last rev with Debian 64Bit but i have problem in mangosd proc CPU . every 3 Hour mangosd CPU proc passes %100 !!! any idea about this problem . thank you
  13. for one CPU core i7 witch one i need to use ? make -j 2 make -j 4 make -j 8
  14. i need a patch to player cannot whisper or invite any player to when rich level 10 or 20 . can any one help me about that ? thanks
  15. i found this Configuration for mysql with 500 Player Online , but i need for 1000 Player Online . can any one help me about that ? OS : Debian 64Bit Ram : 8GB DDR3 # MySQL Config for 500 Player Online . key_buffer = 100M max_allowed_packet = 100M thread_stack = 50M thread_cache_size = 8 query_cache_limit = 50M query_cache_size = 512M
  16. this Corn Job , just when Mangos Crash work or if i shutdown Manuel in the game , it's will be start it again ? how i can check , this Corn job it's Working or not ? thanks
  17. where i need to save corn job ? cron.d corn.daily corn.hourly ... and for stop script , what i need to ? thanks
  18. i found it problem in Compile , just "--with-openssl=/usr" but When Compile mangos on Linux with OpenSSL , what is will be happened ? i know ssl it's more Security on WebSite but on Mangos ???!!!
  19. i Found this script but it's not working for me . - Run as a background service #!/bin/bash # This script is copyright Weedysoft Inc. 2006 # Distributed under the terms of the GNU General Public License v2 # # Massive Network Game Object Server # Init Script # # I make no guarantees, it works for me and thats what counts. Don't come crying if it nukes your server. # Made for sandoria.org version=0.1.9 MANGOSDIR=/opt/mangos/ case "$1" in "") echo "${0##*/} version ${version}, Author: Weedy" echo "Usage: ${0##*/} <options>" # No command-line parameters, echo "" # or first parameter empty. echo "Normal Options:" echo " start stop restart" exit $E_PARAM ;; "start") cd $MANGOSDIR screen -dmS realmd ./bin/realmd screen -dmS mangosd ./bin/mangosd monitorMangosdPid=`ps ax | awk '($6 ~ /monitor-mangosd/) { print $1 }'` if test "$monitorMangosdPid" = "" then screen -dmS monitor-mangosd ./src/mangosd/monitor-mangosd fi sleep 3 realmdPid=`ps ax | awk '($5 ~ /realmd/) { print $1 }'` mangosdPid=`ps ax | awk '($5 ~ /mangosd/) { print $1 }'` if test "$realmdPid" = "" then echo "Realmd failed to start" fi if test "$mangosdPid" = "" then echo "Mangosd failed to start" fi echo "Mangos is now online :-)" ;; "stop") realmdPid=`ps ax | awk '($5 ~ /realmd/) { print $1 }'` mangosdPid=`ps ax | awk '($5 ~ /mangosd/) { print $1 }'` runMangosdPid=`ps ax | awk '($6 ~ /run-mangosd/) { print $1 }'` if test "$realmdPid" != "" then kill $realmdPid wait $realmdPid >/dev/null 2>&1 fi if test "$mangosdPid" != "" then (sleep 1; echo 'USER EDIT_ME_LEVEL3_GM'; sleep 1; echo 'PASS EDIT_ME_TO'; sleep 1;echo 'broadcast Server shuting down - 30s .save warning'; sleep 15; echo 'broadcast Server shuting down - 15s .save warning'; sleep 15; echo 'broadcast Server offline;-)'; sleep 1; echo 'exit'; sleep 1 ) | telnet localhost 34226 wait $mangosdPid >/dev/null 2>&1 fi if test "$runMangosdPid" != "" then kill $runMangosdPid wait $runMangosdPid >/dev/null 2>&1 fi sleep 3 echo "Mangos is now offline :-(" ;; "restart") realmdPid=`ps ax | awk '($5 ~ /realmd/) { print $1 }'` mangosdPid=`ps ax | awk '($5 ~ /mangosd/) { print $1 }'` runMangosdPid=`ps ax | awk '($6 ~ /run-mangosd/) { print $1 }'` if test "$realmdPid" != "" then kill $realmdPid wait $realmdPid >/dev/null 2>&1 fi if test "$mangosdPid" != "" then (sleep 1; echo 'USER EDIT_ME_LEVEL3_GM'; sleep 1; echo 'PASS EDIT_ME_TO'; sleep 1;echo 'broadcast Server restarting - 30s .save warning'; sleep 15; echo 'broadcast Server restarting - 15s .save warning'; sleep 15; echo 'broadcast Server offline;-)'; sleep 1; echo 'exit'; sleep 1 ) | telnet localhost 34226 wait $mangosdPid >/dev/null 2>&1 fi if test "$runMangosdPid" != "" then kill $runMangosdPid wait $runMangosdPid >/dev/null 2>&1 fi echo "Mangos is now offline, restarting;-)" cd $MANGOSDIR screen -dmS realmd ./bin/realmd screen -dmS mangosd ./bin/run-mangosd sleep 3 realmdPid=`ps ax | awk '($5 ~ /realmd/) { print $1 }'` mangosdPid=`ps ax | awk '($5 ~ /mangosd/) { print $1 }'` if test "$realmdPid" = "" then echo "Realmd failed to start" fi if test "$mangosdPid" = "" then echo "Mangosd failed to start" fi echo "Mangos is now online :-)" ;; esac exit $? - Auto restarting script #cat run-mangosd #!/bin/bash # Massive Network Game Object Server # autorestart Script DPATH=/opt/mangos/bin while : do echo "MaNGOS daemon restarted" echo `date` >> crash.log & $DPATH/mangosd | tail -n 20 >> crash.log echo " " >> crash.log & pid=`ps ax | awk '($5 ~ /mangosd/) { print $1 }'` wait $pid echo `date` ", MaNGOS daemon crashed and restarted." >> serverlog done Where i need to put this 2 Files ?
×
×
  • 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