mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-24 02:46:33 +01:00
Add spaces after commas
This commit is contained in:
@@ -112,7 +112,7 @@ class example_creature : public CreatureScript
|
||||
m_uiPhase = 1; // Start in phase 1
|
||||
m_uiPhaseTimer = 60000; // 60 seconds
|
||||
m_uiSpell1Timer = 5000; // 5 seconds
|
||||
m_uiSpell2Timer = urand(10000,20000); // between 10 and 20 seconds
|
||||
m_uiSpell2Timer = urand(10000, 20000); // between 10 and 20 seconds
|
||||
m_uiSpell3Timer = 19000; // 19 seconds
|
||||
m_uiBeserkTimer = 120000; // 2 minutes
|
||||
|
||||
@@ -170,7 +170,7 @@ class example_creature : public CreatureScript
|
||||
if (m_uiSayTimer <= uiDiff)
|
||||
{
|
||||
//Random switch between 5 outcomes
|
||||
DoScriptText(RAND(SAY_RANDOM_0,SAY_RANDOM_1,SAY_RANDOM_2,SAY_RANDOM_3,SAY_RANDOM_4), me);
|
||||
DoScriptText(RAND(SAY_RANDOM_0, SAY_RANDOM_1, SAY_RANDOM_2, SAY_RANDOM_3, SAY_RANDOM_4), me);
|
||||
|
||||
m_uiSayTimer = 45000; //Say something agian in 45 seconds
|
||||
}
|
||||
|
||||
@@ -245,7 +245,7 @@ class spell_ex_66244 : public SpellScriptLoader
|
||||
{
|
||||
OnEffectApply += AuraEffectApplyFn(spell_ex_66244AuraScript::HandleEffectApply, EFFECT_0, SPELL_AURA_DUMMY, AURA_EFFECT_HANDLE_REAL);
|
||||
OnEffectRemove += AuraEffectRemoveFn(spell_ex_66244AuraScript::HandleEffectRemove, EFFECT_0, SPELL_AURA_DUMMY, AURA_EFFECT_HANDLE_REAL);
|
||||
OnEffectPeriodic += AuraEffectPeriodicFn(spell_ex_66244AuraScript::HandleEffectPeriodic,EFFECT_0, SPELL_AURA_DUMMY);
|
||||
OnEffectPeriodic += AuraEffectPeriodicFn(spell_ex_66244AuraScript::HandleEffectPeriodic, EFFECT_0, SPELL_AURA_DUMMY);
|
||||
OnEffectUpdatePeriodic += AuraEffectUpdatePeriodicFn(spell_ex_66244AuraScript::HandleEffectPeriodicUpdate, EFFECT_0, SPELL_AURA_DUMMY);
|
||||
DoEffectCalcAmount += AuraEffectCalcAmountFn(spell_ex_66244AuraScript::HandleEffectCalcAmount, EFFECT_0, SPELL_AURA_DUMMY);
|
||||
DoEffectCalcPeriodic += AuraEffectCalcPeriodicFn(spell_ex_66244AuraScript::HandleEffectCalcPeriodic, EFFECT_0, SPELL_AURA_DUMMY);
|
||||
|
||||
Reference in New Issue
Block a user