Thread: zone instancing
View Single Post
  #8  
Old 04-12-2011, 01:28 AM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,072
Default

Quote:
Originally Posted by blackdragonsdg View Post
Well I thought I had this working but still no npc's showing up inside the instance. So now I am not sure if the instance is working at all. The npc was working just fine prior to changing the version number in npc_types and spawn2 tables.

What am I doing wrong?

Test Script
Code:
sub EVENT_SAY {
	my $group = $client->GetGroup();
	if ($text =~/Hail/i)
	{
	quest::say("Just say the word [group].");
	}
	if (($text =~/group/i) && $ulevel >= 80 && $hasitem{219532} && $group) {
		quest::CreateInstance("crystallos", 1, 21600);
		quest::AssignGroupToInstance("crystallos"); 
		quest::MovePCInstance(446, "crystallos", -65, -200, -75);
        }
	elsif (($text =~/group/i) && $ulevel <= 79 && $hasitem{219532} && $group) {
		quest::say("Sorry but you are not strong enough for this quest come back when you have gained more experience.");
        }
	elsif (($text =~/group/i) && $ulevel >= 80 && !$hasitem{219532} && $group) {
		quest::say("Sorry but you do not have the key needed to enter the zone for this quest. Seek out the Relic Gatekeeper, she might be able to help you.");
        }
	elsif (($text =~/group/i) && $ulevel >= 80 && $hasitem{219532} && !$group) {
		quest::say("Sorry but you are not in a group. Find a group then try again.");
        }
}
NPC that is suppose to go into the instance
Code:
INSERT INTO `spawnentry` (`spawngroupID`, `npcID`, `chance`) VALUES (700110, 700011, 100);
INSERT INTO `spawngroup` (`id`, `name`, `spawn_limit`, `dist`, `max_x`, `min_x`, `max_y`, `min_y`, `delay`) VALUES (700110, '700110', 1, 0, 0, 0, 0, 0, 0);
INSERT INTO `spawn2` (`id`, `spawngroupID`, `zone`, `version`, `x`, `y`, `z`, `heading`, `respawntime`, `variance`, `pathgrid`, `_condition`, `cond_value`, `enabled`) VALUES (700011, 700110, 'crystallos', 1, -996.799988, -351.299988, -426.399994, 8.900000, 1200, 0, 0, 0, 1, 1);
INSERT INTO `npc_types` (`id`, `name`, `lastname`, `level`, `race`, `class`, `bodytype`, `hp`, `gender`, `texture`, `helmtexture`, `size`, `hp_regen_rate`, `mana_regen_rate`, `loottable_id`, `merchant_id`, `npc_spells_id`, `npc_faction_id`, `adventure_template_id`, `trap_template`, `mindmg`, `maxdmg`, `npcspecialattks`, `aggroradius`, `face`, `luclin_hairstyle`, `luclin_haircolor`, `luclin_eyecolor`, `luclin_eyecolor2`, `luclin_beardcolor`, `luclin_beard`, `drakkin_heritage`, `drakkin_tattoo`, `drakkin_details`, `armortint_id`, `armortint_red`, `armortint_green`, `armortint_blue`, `d_meele_texture1`, `d_meele_texture2`, `prim_melee_type`, `sec_melee_type`, `runspeed`, `MR`, `CR`, `DR`, `FR`, `PR`, `Corrup`, `see_invis`, `see_invis_undead`, `qglobal`, `AC`, `npc_aggro`, `spawn_limit`, `attack_speed`, `findable`, `STR`, `STA`, `DEX`, `AGI`, `_INT`, `WIS`, `CHA`, `see_hide`, `see_improved_hide`, `trackable`, `isbot`, `exclude`, `ATK`, `Accuracy`, `slow_mitigation`, `version`, `maxlevel`, `scalerate`, `private_corpse`, `unique_spawn_by_name`) VALUES (700011, 'Hyrdos, Guardian of Crystallos', NULL, 90, 530, 9, 26, 5500000, 2, 1, 6, 250, 500, 0, 750001, 0, 547, 79, 0, 0, 12000, 12000, 'SERrFTQMCNIDf', 250, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 28, 2.5, 350, 350, 350, 350, 350, 0, 1, 1, 1, 6000, 0, 1, -75, 0, 750, 750, 750, 750, 750, 750, 750, 1, 0, 1, 0, 3, 20000, 0, 0, 1, 0, 100, 0, 0);
Refer to:

http://eqemulator.org/forums/showthread.php?t=32609


Code:
if (($text =~/group/i) && $ulevel >= 80 && $hasitem{219532} && $group) {
                plugin::SendToInstance("group", "crystallos", 1, -65, -200, -75, "grp", 21600);
        }
This requires checkout of the Plugins Repo SVN:

http://eqemulator.org/forums/showthread.php?t=32608
Reply With Quote