https://mmo-dev.info/rules/#rule-4_5 https://mmo-dev.info/rules/#rule-3_3
Hello, i want to make when a monster sees another monster with id = 37002 in a radius of 1500 to start attacking it.. is that possible
Interlude AI
till now i did like this but i doubt it is correct cause it doesnt work
HTML clipboard
EventHandler SEE_CREATURE( creature )
{
if( creature.id == 1037002 )
{
myself::AddAttackDesire( creature.id, 100, 5000 );
}
}
(i miss the radius)
Interlude AI
till now i did like this but i doubt it is correct cause it doesnt work
HTML clipboard
EventHandler SEE_CREATURE( creature )
{
if( creature.id == 1037002 )
{
myself::AddAttackDesire( creature.id, 100, 5000 );
}
}
(i miss the radius)