ďťż

Przykładowy skrypt bossa





Dawed - 09-27-2009 18:31
Przykładowy skrypt bossa
  Możliwe że się komuś przyda, skrypt doomwalkera - nie wiem czy działa czy nie, poprostu daje żeby można było podejżeć jak to mniej-więcej wygląda. Można sobie poćwiczyć na takim czymś, czy poprostu modyfikować - przynajmniej ja tak robiłem jak mi sie nudziło :D
Jak ktoś chce więcej to:
http://www.scriptdev2.com

Kod: #include "../../sc_defines.h"
//--------------------------------------
//Spells
#define SPELL_MARK_DEATH* * * * * * 37128
#define SPELL_SUNDER_ARMOR* * * * * 30901

#define SPELL_CHAIN_LIGHTNING* * * 33665

#define SPELL_OVERRUN* * * * * * * 32636
#define SAY_OVERRUN_1* * * * * * * "Trajectory locked."
#define SOUND_OVERRUN_1* * * * * * 11347
#define SAY_OVERRUN_2* * * * * * * "Engage maximum speed."
#define SOUND_OVERRUN_2* * * * * * 11348

#define SPELL_ENRAGE* * * * * * * * 34624

#define SPELL_EARTHQUAKE* * * * * * 32686
#define SAY_EARTHQUAKE_1* * * * * * "Tectonic disruption commencing."
#define SOUND_EARTHQUAKE_1* * * * * 11345
#define SAY_EARTHQUAKE_2* * * * * * "Magnitude set. Release."
#define SOUND_EARTHQUAKE_2* * * * * 11346
//---------------------------------------
//Aggro
#define SAY_AGGRO* * * * * * * * * "Do not proceed. You will be eliminated!"
#define SOUND_AGGRO* * * * * * * * 11344
//---------------------------------------
//Slay
#define SAY_SLAY_1* * * * * * * * * "Threat level zero."
#define SOUND_SLAY_1* * * * * * * * 11349
#define SAY_SLAY_2* * * * * * * * * "Directive accomplished."
#define SOUND_SLAY_2* * * * * * * * 11350
#define SAY_SLAY_3* * * * * * * * * "Target exterminated."
#define SOUND_SLAY_3* * * * * * * * 11351
//---------------------------------------
//Death
#define SAY_DEATH* * * * * * * * * "System failure in five... four..."
#define SOUND_DEATH* * * * * * * * 11352

struct MANGOS_DLL_DECL boss_doomwalkerAI : public ScriptedAI
{
* * boss_doomwalkerAI(Creature *c) : ScriptedAI© {EnterEvadeMode();}

* * uint32 Chain_Timer;
uint32 Enrage_Timer;
uint32 Overrun_Timer;
uint32 Quake_Timer;
uint32 Armor_Timer;

* * bool InCombat;

* * void EnterEvadeMode()
* * {
* * * * Enrage_Timer* * = 0;
* * * * Armor_Timer* * = 10000;
* * * * Chain_Timer* * = 20000;
* * * * Quake_Timer* * = 60000;
* * * * Overrun_Timer* = 120000;

* * * * InCombat = false;
* * * *
* * * * m_creature->RemoveAllAuras();
* * * * m_creature->DeleteThreatList();
* * * * m_creature->CombatStop();

* * * * DoGoHome();
* * }

* * void KilledUnit(Unit* Victim)
* * {
* * * * switch(rand()%3)
* * * * {
* * * * case 0:
* * * * * * DoYell(SAY_SLAY_1, LANG_UNIVERSAL, NULL);
* * * * * * DoPlaySoundToSet(Victim, SOUND_SLAY_1);
* * * * * * break;
* * * * case 1:
* * * * * * DoYell(SAY_SLAY_2, LANG_UNIVERSAL, NULL);
* * * * * * DoPlaySoundToSet(Victim, SOUND_SLAY_2);
* * * * * * break;
* * * * case 2:
* * * * * * DoYell(SAY_SLAY_3, LANG_UNIVERSAL, NULL);
* * * * * * DoPlaySoundToSet(Victim, SOUND_SLAY_3);
* * * * * * break;
* * * * }
* * * * * * DoCast(m_creature->getVictim(),SPELL_MARK_DEATH);
* * }

* * void JustDied(Unit* Killer)
* * {
* * * * DoYell(SAY_DEATH, LANG_UNIVERSAL, NULL);
* * * * DoPlaySoundToSet(m_creature, SOUND_DEATH);
* * }

* * void AttackStart(Unit *who)
* * {
* * * * if (!who) return;

* * * * if (who->isTargetableForAttack() && who != m_creature)
* * * * {
* * * * * * if (!InCombat)
* * * * * * {
* * * * * * * * DoFaceTarget(m_creature->getVictim());
* * * * * * * * DoYell(SAY_AGGRO, LANG_UNIVERSAL, NULL);
* * * * * * * * DoPlaySoundToSet(m_creature, SOUND_AGGRO);
* * * * * * * * InCombat = true;
* * * * * * }
* * * * * * DoStartMeleeAttack(who);
* * * * }
* * }

* * void MoveInLineOfSight(Unit *who)
* * {
* * * * if (!who || m_creature->getVictim()) return;

* * * * if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
* * * * {
* * * * * * float attackRadius = m_creature->GetAttackDistance(who);
* * * * * * if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
* * * * * * {
* * * * * * * * if(who->HasStealthAura()) who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH) ;

* * * * * * * * if (!InCombat)
* * * * * * * * {
* * * * * * * * * * DoFaceTarget(m_creature->getVictim());
* * * * * * * * * * DoYell(SAY_AGGRO, LANG_UNIVERSAL, NULL);
* * * * * * * * * * DoPlaySoundToSet(m_creature, SOUND_AGGRO);
* * * * * * * * * * InCombat = true;
* * * * * * * * }
* * * * * * * * DoStartMeleeAttack(who);
* * * * * * }
* * * * }
* * }

* * void UpdateAI(const uint32 diff)
* * {
* * * * if (!m_creature->SelectHostilTarget() || !m_creature->getVictim())
return;
* * * * if (m_creature->IsWithinDistInMap(m_creature->getVictim(), ATTACK_DISTANCE))
* * * * {
* * * * * * *
* * * * * * if (((m_creature->GetHealth()*100)/ m_creature->GetMaxHealth()) <= 20)//when hp <= 20% gain enrage
* * * * * * {*
if(Enrage_Timer < diff)
{
DoCast(m_creature,SPELL_ENRAGE);
Enrage_Timer = 6000;

}else Enrage_Timer -= diff;
}

* * * * * * if (Overrun_Timer < diff)
* * * * * * {*
switch(rand()%2)
{
case 0:
DoYell(SAY_OVERRUN_1, LANG_UNIVERSAL, NULL);
* * * * * * * * DoPlaySoundToSet(m_creature, SOUND_OVERRUN_1);
break;
case 1:
* * * * * * * * DoYell(SAY_OVERRUN_2, LANG_UNIVERSAL, NULL);
* * * * * * * * DoPlaySoundToSet(m_creature, SOUND_OVERRUN_2);
break;
}
DoCast(m_creature->getVictim(),SPELL_OVERRUN);
* * * * * * * * Overrun_Timer = (100 + rand()% 80) * 1000;

* * * * * * }else Overrun_Timer -= diff;

* * * * * * if (Quake_Timer < diff)
* * * * * * {
* * * * * * * * if (rand()%2)
* * * * * * * * return;

* * * * * * * * switch(rand()%2)
{
case 0:
* * * * * * * * DoYell(SAY_EARTHQUAKE_1, LANG_UNIVERSAL, NULL);
* * * * * * * * DoPlaySoundToSet(m_creature, SOUND_EARTHQUAKE_1);
* * * * * * * * break;
case 1:
* * * * * * * * DoYell(SAY_EARTHQUAKE_2, LANG_UNIVERSAL, NULL);
* * * * * * * * DoPlaySoundToSet(m_creature, SOUND_EARTHQUAKE_2);
break;
}
m_creature->RemoveAura(SPELL_ENRAGE, NULL);//remove enrage before casting earthquake because enrage + earthquake = 16000dmg over 8sec and all dead
* * * * * * * * DoCast(m_creature,SPELL_EARTHQUAKE);
* * * * * * * * Quake_Timer = (80 + rand()% 20) * 1000;

* * * * * * }else Quake_Timer -= diff;

* * * * * * if (Chain_Timer < diff)
* * * * * * {
* * * * * * * * DoCast(m_creature->getVictim(),SPELL_CHAIN_LIGHTNING);
* * * * * * * * Chain_Timer = (50 + rand()% 50) * 1000;
* * * * * * }else Chain_Timer -= diff;

* * * * * * if (Armor_Timer < diff)
* * * * * * {
* * * * * * * * DoCast(m_creature->getVictim(),SPELL_SUNDER_ARMOR);
* * * * * * * * Armor_Timer = (30 + rand()% 10) * 1000;
* * * * * * }else Armor_Timer -= diff;

* * * * * * DoMeleeAttackIfReady();
* * * * }
* * }
};

CreatureAI* GetAI_boss_doomwalker(Creature *_Creature)
{
* * return new boss_doomwalkerAI (_Creature);
}

void AddSC_boss_doomwalker()
{
* * Script *newscript;
* * newscript = new Script;
* * newscript->Name="boss_doomwalker";
* * newscript->GetAI = GetAI_boss_doomwalker;
* * m_scripts[nrscripts++] = newscript;
}




Crytek - 09-28-2009 14:36
Skrypty mozna przegladac tez tutaj : http://bitbucket.org/KingPin/

wchodzac w repozytorium TrinityCore mamy changelog zmian w kodzie, klikajac zakladke SOURCE wybieramy kolejno :
src -> bindings -> scripts -> scripts

tam mamy foldery :

areatrigger - ten folder was kompletnie nie interesuje
boss - 4 skrypty bossow nie sklasyfikowanych do lokacji
creature - skrypty odpowiadajace za spell'ing mobow
custom - fajnie opisany skrypt na ktorym mozna sie wiele nauczyc. jeden plik m
go - odpowiada za skrypty niektorych obiektow interaktywnych
guard - odpowiada za guardy w poszczegolnych lokacjach
item - skrypty niektorych itemow
npc - skrypty npc, tam umieszcza sie skrypty odpowiadajace za eskorty, profesje itp.
zone - skrypty podzielone wzgledem lokacji, w tym folderze otwierajac folder poszczegolnej lokacji/instancji znajdziemy skrypty poszczegolnych bossow, maja one postac : boss_nazwa_bossa.cpp

wewnatrz takiego pliku znajdziemy caly skrypt a na jego poczatku ogolne informacje :

/* ScriptData
Name: Boss_Shirrak_the_dead_watcher
%Complete: 80
Comment: InhibitMagic should stack slower far from the boss, proper Visual for Focus Fire, heroic implemented
Category: Auchindoun, Auchenai Crypts
EndScriptData */

z ktorych mozna sie dowiedziec mniej wiecej podstawowych informacji o bossie, kompletnosci skryptu i TODO list.
  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • karro31.htw.pl
  •