Jump to content

Athor

Members
  • Posts

    18
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

About Athor

  • Birthday 01/01/1

Athor's Achievements

Member

Member (2/3)

0

Reputation

  1. bug confirmed on 10309 scriptdev2 1755 no patch had 2 dk player complaining about char not saved after leaving game - same dberror.log report than above & changing rune solving issue. 2010-08-08 03:03:19 SQL: INSERT INTO character_aura (guid, caster_guid, spell, stackcount, remaincharges, basepoints0, basepoints1, basepoints2, maxduration0, maxduration1, maxduration2, remaintime0, remaintime1, remaintime2, effIndexMask) VALUES ('64670', '64670', '53362', '1', '0', '-4', '0', '0', '-1', '0', '0', '-1', '0', '0', '1') 2010-08-08 03:03:19 SQL ERROR: Duplicate entry '64670-53362' for key 1
  2. hello Was allready reported sry cant find thread back. Is core problem with teaching spells witch learn also riding skill - bug is you cant learn this spells when you allready know related riding skill. dirty work around is replace with learn spell http://www.wowhead.com/spell=33943 at trainer list but there is lot of spells like this such as http://www.wowhead.com/spell=13820 where you should replace with 13819 etc... Maybe core process could check if player allready have skill learn only spell. thank you
  3. hello core 9334 scriptdev2 1573 with no patch OS win32 how to reproduce: Take a taxi ride between light hope chapel and zulaman for example when character go trought portal during the taxi flight , taxi mount speed increase like 300% At arrival when taxi ended , character is in flymode. thank you
  4. possible same here - every 5-15min since upgrade to 3.3.2 from 9254 to 9365 scriptdev2 r1573 win 32 no custom addition same crash.log for all http://pastebin.com/m770d7647 ps: is possible from a log like this to read ref to check ,such as spell id casted, creature entry or guid involved ? ...thank you
  5. Could be done with EventAI and action 41 EventAI need this ACTION_T_SEND_SCRIPTS for send its own scripts table ACTION_T_TARGET & EVENT_T_TARGET possible define a target such as spell_script_target table to trigger event such as EVENT_T_SPELLHIT then allow interact scripts between npc (talk, move, etc...) allow boss script to respawn GO type chest, doors on death, encounter start etc... would be much less work to do for scriptdev2 team.
  6. "count the roll "confirmed too 9254 scriptdev2 1555 on win32 no custom log http://filebeam.com/cce9178eef7c3973bd22f62575ed6f51
  7. [9268] works fine - tested emote /move to/ respawn GO / set unit field /quest complete thanks again NoFantasy
  8. hello To MOVE_TO or EMOTE npc work fine with quest_end/start_scripts INSERT INTO `quest_end_scripts` (`id`, `delay`, `command`, `datalong`, `datalong2`, `dataint`, `x`, `y`, `z`, `o`) VALUES (10000, 4, 3, 0, 5000, 0, 7873.62, -1399.65, 1534.06, 2.89119), (10000, 10, 1, 6, 0, 0, 0, 0, 0, 0) But same script with gossip_scripts return errors 2010-01-30 01:46:00 ERROR:SCRIPT_COMMAND_MOVE_TO call for non-creature (TypeId: 4), skipping. 2010-01-30 01:46:05 ERROR:SCRIPT_COMMAND_EMOTE call for non-creature (TypeId: 4), skipping. any setting to define correct target/unit somewhere i could have missed ? thank you :cool:
  9. confirmed - also if player logout from this zone return server.log errors after server restart like 2010-01-30 02:07:25 ERROR:Player (GUID: 57428) has broken zone-data 2010-01-30 02:07:25 ERROR:Player (GUID: 9183) has broken zone-data 2010-01-30 02:07:25 ERROR:Player (GUID: 35222) has broken zone-data 2010-01-30 02:07:25 ERROR:Player (GUID: 48151) has broken zone-data 2010-01-30 02:07:25 ERROR:Player (GUID: 54052) has broken zone-data 2010-01-30 02:07:26 ERROR:Player (GUID: 55356) has broken zone-data 2010-01-30 02:07:26 ERROR:Player (GUID: 53321) has broken zone-data 2010-01-30 02:07:26 ERROR:Player (GUID: 56925) has broken zone-data 2010-01-30 02:07:27 ERROR:Player (GUID: 68189) has broken zone-data All this char were at Krasus landing - a single .namego #char_name few yard away in Dalaran solved this '
  10. there's core issue with some mount spell at trainer like http://www.wowhead.com/?spell=13820 if player allready know riding skill cant learn spell Then trainer must also have in trainer list to fix http://www.wowhead.com/?spell=13819 same with druid flight form http://www.wowhead.com/?spell=33950 maybe other. Dont know if possible core could check if player has skil> teach only mount spell
  11. [8997] confirm summoned version not working - if manually spawned with .npc add works fine repair/vendor/banker same with own gossip_menu_id settings at db - works only for spawned one (click on summoned gossip menu does nothing) also summoned version not apply aura from creature_template_addon / spawned version have it. should have this aura in db http://www.wowhead.com/?spell=68054 DELETE FROM `creature_template_addon` WHERE (`entry`=35642); INSERT INTO `creature_template_addon` (`entry`, `mount`, `bytes1`, `bytes2`, `emote`, `moveflags`, `auras`) VALUES (35642, 0, 0, 0, 0, 0, '68054 0'); tested without aura settings too for same result.
  12. confirm seems there's problem with locales_gossip_menu_option - on click on gossip display wrong option_text_loc. sample when click on inkeeper "make this inn my home" (single inkeeper no scriptdev script/scriptname) display "bring me back to life" & works fine when this table empty
  13. What bug does the patch fix? What features does the fix add? Set creature_ai_texts.emote datatype to smallint allow play emote with id>255 Currently field emote datatype tinyint(3) only allow playemote with emoteID up to 255 If try to input emoteID>255 like 430 for example , field value will be automatically set to max allowed value 255 . Then you will have a db error report at server start like 2009-08-27 11:33:40 CreatureEventAI: Entry-XXXX in table `creature_ai_texts` has Emote 255 but emote does not exist. For which repository revision was the patch created? Done on 8413 Is there a thread in the bug report section or at lighthouse? If yes, please add a link to the thread. none found Who has been writing this fix? Please include either forum user names or email addresses. me fix ALTER TABLE `creature_ai_texts` CHANGE `emote` `emote` smallint (5) unsigned NOT NULL default '0';
  14. thank you NoFantasy it works fine did on backup from core 6888 - last patch included 2008_12_03_01_character_guild_member.sql step 1) * run core 6888 * go ingame * create hunter char * learn Mail .learn 8737 * .additemset 651 http://www.wowhead.com/?itemset=651 * add gems 2 red i33133 i33134 2 blue i34256 i33137 2 yellow i33143 i33144 1 meta 25901 *put in socket, log out, restart server still on 6888 no pb, gems correctly show etc... step 2) *upgrade char db to 7067_03_characters_character_spell with normal core sql files *run it with core 7067_03_sd2_838 gems messed up and not show in correct socket etc... bug confirmed reistall fresh char db backup & redo full step 1) on step 2) edit 2008_12_22_19_characters_item_instance.sql and replace : ALTER TABLE character_db_version CHANGE COLUMN required_2008_12_22_18_characters_characters required_2008_12_22_19_characters_item_instance bit; UPDATE item_instance SET data = REPLACE(data,' ',' '); UPDATE item_instance SET data = CONCAT(TRIM(data),' '); UPDATE item_instance SET data= CONCAT( SUBSTRING_INDEX(SUBSTRING_INDEX(data,' ',30),' ',-30),' 0 0 0 ', SUBSTRING_INDEX(SUBSTRING_INDEX(data,' ',60),' ',-60+30),' 0 ') WHERE SUBSTRING_INDEX(data,' ',60) = data AND SUBSTRING_INDEX(data,' ',60-1) <> data; UPDATE item_instance SET data= CONCAT( SUBSTRING_INDEX(SUBSTRING_INDEX(data,' ',30),' ',-30),' 0 0 0 ', SUBSTRING_INDEX(SUBSTRING_INDEX(data,' ',60),' ',-60+30),' 0 ', SUBSTRING_INDEX(SUBSTRING_INDEX(data,' ',134),' ',-134+60)) WHERE SUBSTRING_INDEX(data,' ',134) = data AND SUBSTRING_INDEX(data,' ',134-1) <> data; by ALTER TABLE character_db_version CHANGE COLUMN required_2008_12_22_18_characters_characters required_2008_12_22_19_characters_item_instance bit; UPDATE item_instance SET data = REPLACE(data,' ',' '); UPDATE item_instance SET data = CONCAT(TRIM(data),' '); UPDATE item_instance SET data= CONCAT( SUBSTRING_INDEX(SUBSTRING_INDEX(data,' ',54),' ',-54),' 0 0 0 ', SUBSTRING_INDEX(SUBSTRING_INDEX(data,' ',60),' ',-60+54),' 0 ') WHERE SUBSTRING_INDEX(data,' ',60) = data AND SUBSTRING_INDEX(data,' ',60-1) <> data; UPDATE item_instance SET data= CONCAT( SUBSTRING_INDEX(SUBSTRING_INDEX(data,' ',30),' ',-30),' 0 0 0 ', SUBSTRING_INDEX(SUBSTRING_INDEX(data,' ',60),' ',-60+30),' 0 ', SUBSTRING_INDEX(SUBSTRING_INDEX(data,' ',134),' ',-134+60)) WHERE SUBSTRING_INDEX(data,' ',134) = data AND SUBSTRING_INDEX(data,' ',134-1) <> data; *run it with core 7067_03_sd2_838 gems correctly match with socket.
×
×
  • 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