Go Back   EQEmulator Home > EQEmulator Forums > Quests > Quests::Plugins & Mods

Quests::Plugins & Mods Completed plugins for public use as well as modifications.

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 05-06-2010, 12:26 AM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,071
Default plugin::vtell

Another attempt to make, "cosmetics" easier in my scripting I made a plugin for voice tells, considering the command is completely integer based, it's very annoying to do anything with it.

Another thing that is rather annoying is the NPC tells will take up your reply cache so I use them sparingly.

But regardless, this cuts down on the time consumption when using this feature.

Note: Froglok, Vah-Shir, and Iksar (Drakkin was not even found closely) are not 100% as there was no clear integer that I found right away that matched them, so they are relative. Regardless it is going to make doing any form of voicetells cake compared to messing around with integers. Hope you enjoy it.

Race List:
Quote:
"human" => 0,
"barbarian" => 1,
"erudin" => 2,
"woodelf" => 3,
"highelf" => 4,
"darkelf" => 5,
"halfelf" => 6,
"dwarf" => 7,
"troll" => 8,
"ogre" => 9,
"halfling" => 10,
"gnome" => 11,
"iksar" => 12,
"froglok" => 13,
"vahshir" => 15,
USAGE:

Code:
 plugin::vtell("message","race-name","sex(malefemale)");

so

plugin::vtell("battle","barbarian","male");
Just name the file "voicetell.pl" and put it in your plugins folder to get it to work.

Code:
sub vtell
{
	my $GreetName = $_[0];
	my $RaceName = $_[1];
	my $Sex = $_[2];
	%GreetId = (
		"agree" => 1,
		"battle" => 2,
		"disagree" => 3,
		"follow" => 4,
		"greet" => 5,
		"heal" => 6,
		"help" => 7,
		"laugh" => 8,
		"part" => 9,
		"retreat" => 10,
		"stop" => 11,
		"thanks" => 12,
	);
		%RaceID = (
		"human" => 0,
		"barbarian" => 1,
		"erudin" => 2,
		"woodelf" => 3,
		"highelf" => 4,
		"darkelf" => 5,
		"halfelf" => 6,
		"dwarf" => 7,
		"troll" => 8,
		"ogre" => 9,
		"halfling" => 10,
		"gnome" => 11,
		"iksar" => 12,
		"froglok" => 13,
		"vahshir" => 15,
	);
		%SexName = (
		"male" => 2,
		"female" => 3,
	);
	my $name = plugin::val('$name');
	quest::voicetell($name, $GreetId{$GreetName}, $RaceID{$RaceName}, $SexName{$Sex});
}

return 1;
I hope you all enjoy this!
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 09:27 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3