Jump to content

Jethrogibbs

Members
  • Posts

    137
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by Jethrogibbs

  1. this I know but I do not succeed in solving conflicts it is for this that I posted
  2. Would anybody have the update patch please (rev 10175)?
  3. For me also works very well (windows xp SP3) (release win32)
  4. Full patch vehicles[10112] HERE DOWNLOAD NOW!
  5. http://github.com/mangos/mangos/commit/cd5bd44727ce2aad410b12792c20a00d9093ca8e#diff-0 you must change all your fichiers.conf (mangos, realmd and ScriptDev2 (1719) and works perfect for me
  6. fix for 10032 (spellAuras.cpp) http://pastebin.com/CPrhMkKT I made this patch based on those I use if it does not have to change the number of lines.
  7. required_10008_01_mangos_db_verison` bit(1) default NULL ALTER TABLE db_version CHANGE COLUMN required_9990_01_mangos_spell_chain required_10008_01_mangos_db_verison bit; 10008_01_mangos_db_verison.sql \\ #define REVISION_DB_MANGOS "required_10008_01_mangos_db_verison" verison ??? should be"version" not? Fix : http://pastebin.com/Vb3rGVWy
  8. Update for 9919 please , I did not come sorry
  9. works only for the hunter
  10. Or another solution that works very well without script: UPDATE `creature_template` SET `faction_A` = 1802,`faction_H` = 1801, `family` = 35 WHERE `entry` = 19833; UPDATE `creature_template` SET `faction_A` = 1802,`faction_H` = 1801, `family` = 35 WHERE `entry` = 19921;
  11. Conflict with player.cpp rev 9880 update please conflict resolved sorry
  12. Hunter Spell - Snake Trap Code : Place a trap that will release several venomous snakes to attack the first enemy to approach. The snakes will die after 15 sec. Trap will exist for 30 sec. Only one trap can be active at a time. Code : Bug: Snakes Are Hostile To The Hunter. Fix for this bug is easy : UPDATE `creature_template` SET `faction_A` = 1802,`faction_H` = 1801, `family` = 35 WHERE `entry` IN (19833,19921);
  13. Simple to fix compilation error : diff --git a/src/game/Vehicle.cpp b/src/game/Vehicle.cpp index 1fd3b03..10963d8 100644 --- a/src/game/Vehicle.cpp +++ b/src/game/Vehicle.cpp @@ -494,7 +494,7 @@ void Vehicle::AddPassenger(Unit *unit, int8 seatId, bool force) ((Player*)unit)->SetMoverInQueve(this); ((Player*)unit)->SetClientControl(this, 1); } - if(canFly() || HasAuraType(SPELL_AURA_FLY) || HasAuraType(SPELL_AURA_MOD_INCREASE_FLIGHT_SPEED)) + if(canFly() || HasAuraType(SPELL_AURA_FLY) || HasAuraType(SPELL_AURA_MOD_FLIGHT_SPEED_MOUNTED)) { WorldPacket data3(SMSG_MOVE_SET_CAN_FLY, 12); data3<< GetPackGUID();
  14. On all the salesmen, one cannot take 1st item oh the 1st page, the rest work normally is only the 1st item of the 1st page this is the screen:
  15. After this commit : http://github.com/mangos/mangos/commit/4c5b7418814c173df38f93b483a1fb8f745f1d2c Fix for error compilation rev 9727 http://pastebin.com/BdUQehG3
  16. thank you very much until a dual spec 100% functional
  17. Use : patch -d . -p1 <nameofpatch.patch
  18. http://pastebin.com/u4ejbLZ6 ADAPTED FOR 9668
  19. Try this one personally I apply the patches with TortoiseMerge http://pastebin.com/73wfy2he
  20. Simple replace : --- /dev/null +++ b/sql/Vehicles/v02_vehicle_seat_data.sql By --- a/sql/Vehicles/v02_vehicle_seat_data.sql +++ b/sql/Vehicles/v02_vehicle_seat_data.sql and patch apply perfectly This is right an example.
  21. for some time 48 warnings during compilations mangos here is the list of warnings: Avertissement 1 warning C4996: 'strcat': This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_string.inl 110 Avertissement 2 warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_string.inl 120 Avertissement 3 warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_string.inl 178 Avertissement 4 warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_string.inl 188 Avertissement 5 warning C4996: 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strdup. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_string.inl 222 Avertissement 6 warning C4996: 'strncat': This function or variable may be unsafe. Consider using strncat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_string.inl 266 Avertissement 7 warning C4996: 'wcsncat': This function or variable may be unsafe. Consider using wcsncat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_string.inl 279 Avertissement 8 warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_string.inl 320 Avertissement 9 warning C4996: 'wcsncpy': This function or variable may be unsafe. Consider using wcsncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_string.inl 329 Avertissement 10 warning C4996: 'strtok': This function or variable may be unsafe. Consider using strtok_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_string.inl 513 Avertissement 11 warning C4996: 'wcstok': This function or variable may be unsafe. Consider using wcstok_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_string.inl 524 Avertissement 12 warning C4996: 'getenv': This function or variable may be unsafe. Consider using _dupenv_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_stdlib.inl 140 Avertissement 13 warning C4996: '_wgetenv': This function or variable may be unsafe. Consider using _wdupenv_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_stdlib.inl 152 Avertissement 14 warning C4996: '_itoa': This function or variable may be unsafe. Consider using _itoa_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_stdlib.inl 163 Avertissement 15 warning C4996: '_itow': This function or variable may be unsafe. Consider using _itow_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_stdlib.inl 176 Avertissement 16 warning C4996: '_mktemp': This function or variable may be unsafe. Consider using _mktemp_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_stdlib.inl 242 Avertissement 17 warning C4996: '_wmktemp': This function or variable may be unsafe. Consider using _wmktemp_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_stdlib.inl 253 Avertissement 18 warning C4996: 'putenv': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _putenv. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_stdlib.inl 310 Avertissement 19 warning C4996: 'access': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _access. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 59 Avertissement 20 warning C4996: 'chdir': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _chdir. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 131 Avertissement 21 warning C4996: 'rmdir': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _rmdir. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 156 Avertissement 22 warning C4996: 'getcwd': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _getcwd. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 377 Avertissement 23 warning C4996: 'swab': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _swab. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 983 Avertissement 24 warning C4996: 'unlink': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _unlink. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 1127 Avertissement 25 warning C4996: 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strdup. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_string.inl 222 Avertissement 26 warning C4996: 'putenv': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _putenv. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_stdlib.inl 310 Avertissement 27 warning C4996: 'access': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _access. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 59 Avertissement 28 warning C4996: 'chdir': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _chdir. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 131 Avertissement 29 warning C4996: 'rmdir': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _rmdir. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 156 Avertissement 30 warning C4996: 'getcwd': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _getcwd. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 377 Avertissement 31 warning C4996: 'swab': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _swab. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 983 Avertissement 32 warning C4996: 'unlink': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _unlink. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 1127 Avertissement 33 warning C4996: 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strdup. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_string.inl 222 Avertissement 34 warning C4996: 'putenv': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _putenv. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_stdlib.inl 310 Avertissement 35 warning C4996: 'access': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _access. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 59 Avertissement 36 warning C4996: 'chdir': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _chdir. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 131 Avertissement 37 warning C4996: 'rmdir': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _rmdir. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 156 Avertissement 38 warning C4996: 'getcwd': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _getcwd. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 377 Avertissement 39 warning C4996: 'swab': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _swab. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 983 Avertissement 40 warning C4996: 'unlink': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _unlink. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 1127 Avertissement 41 warning C4996: 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strdup. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_string.inl 222 Avertissement 42 warning C4996: 'putenv': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _putenv. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_stdlib.inl 310 Avertissement 43 warning C4996: 'access': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _access. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 59 Avertissement 44 warning C4996: 'chdir': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _chdir. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 131 Avertissement 45 warning C4996: 'rmdir': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _rmdir. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 156 Avertissement 46 warning C4996: 'getcwd': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _getcwd. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 377 Avertissement 47 warning C4996: 'swab': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _swab. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 983 Avertissement 48 warning C4996: 'unlink': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _unlink. See online help for details. c:\\Documents and Settings\\Daniel84\\Bureau\\Nouveau dossier\\mangos\\dep\\ACE_wrappers\\ace\\OS_NS_unistd.inl 1127
×
×
  • 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