Jump to content
TrinityCore

Report

  • Recently Browsing   0 members

    No registered users viewing this page.

  • Similar Content

    • By Madbryan
      Hi,
      I've follow the explanation to make a server with the mmaster branch.
      The authserver and worldserver launch without error.
      I've created an account with the command bnetaccount create
      But when i try to identificate on wow, it says that the login or password is invalid.
      How could vérify that password are encrypted in the right way and decrypt in the good way too ?
       
      Thanks in advance and for all your good work.
       
      Example of salt et verifier that appear in my database auth :
      Salt : ҕ��E��O���4��`˷����NV�:
      Verifier : � ���1ri͐������IDmm-�����v
       
      My table are in utf8_general_ci for auth, world and characters table and utf8mb4_unicode_ci for hotfixes
      MySQL57
      MySQL Workbench 8
      Visual Studio 2019
      Git v2.30.0

    • By MandyDark2
      I'm fixing some core spells and I'm really good at it.

      It turns out that the spell 196608 Eye of the Tiger, of the monk class, must cause damage and at the same time healing in the monk.

      What the spell has two effects that deal with this:

      Effect 0: Id 6 (SPELL_EFFECT_APPLY_AURA)
      Difficulty: Id 0 (DIFFICULTY_NONE)
      BasePoints = 0 + AP * 0.43
      Targets (1, 0) (TARGET_UNIT_CASTER, NO_TARGET)
      Aura Id 8 (SPELL_AURA_PERIODIC_HEAL), value = 0, misc = 0 (0), miscB = 0, amplitude = 0, periodic = 2000

      Effect 1: Id 6 (SPELL_EFFECT_APPLY_AURA)
      Difficulty: Id 0 (DIFFICULTY_NONE)
      BasePoints = 0 + AP * 0.43
      Targets (6, 0) (TARGET_UNIT_TARGET_ENEMY, NO_TARGET)
      Aura Id 3 (SPELL_AURA_PERIODIC_DAMAGE), value = 0, misc = 0 (0), miscB = 0, amplitude = 0, periodic = 2000

      I had never encountered a spell in this way and what happens is that you can only cast the spell on an enemy and never apply the healing effect on the owner. If the aura is applied directly to the caster, apply the damage aura of Effect 1 not the heal of Effect 0.

      Does the core support launching specifically the effect of a spell on a creature? There's another way to solve this?
    • By Lenny4
      When I log in to the game I have this message "Welcome to a Trinity Core Server".
      Where is the table to change this message ?
      Thank you
    • By gldssgames
      Hi, I am having problems with auto update (I find it very confusing to update each update manually), it seems that it only works in version deployed and not as autonomous.
      I run mysql via Command Prompt has worked for me for a long time in projects ... I think it may be ... because I point the configuration file.
      This sentence caught my attention: "failed! If you are a user" (phrase shown in the worldserver log) which I think may have to have permission
      The mysql configuration file, Server log file and the bat pitcher in the form of text is attached, if no one accidentally runs.
      The mysql configuration file and the bat mysql run in the form of text is attached, so no one accidentally runs.
      I will continue to seek a solution, if I find I put here for others with the same problem.
      Thank you for all!

      Since I do not speak English, I translated using google, I'm sorry for that.
      my.ini
      mysql.bat.txt
      Server.log
    • By LordPsyan
      I am trying to make a spell script, something I have never messed with before. Simply put, a spell is cast upon you when you touch an object. I have that working, since that is a game object script. it also adds a 30 second duration, which also works, but does not show the countdown timer like many other spells. I think this needs to be done in a spell script, instead of newSpell->SetDuration(30000); in gameobject script.
      I cannot figure out how to get the timer working, and then get another spell cast upon the player.
      I have this set in my spell script, so if the spell is removed by any other means, the script shouldn't do anything:
                      if (GetTargetApplication()->GetRemoveMode() != AURA_REMOVE_BY_EXPIRE && GetTargetApplication()->GetRemoveMode() != AURA_REMOVE_BY_ENEMY_SPELL)
                          return;
      so to sum up my question:
      spell cast upon player. timer counts down 30 seconds, which gives player enough time to remove the spell, then at end of countdown, another spell cast upon player. Can anyone give me some sample code? I tried working with professor putricide spell codes, and the life bloom spell, but its just not triggering. Yes I added an entry in spell_script_names...
       
      Thanks.
×
×
  • Create New...