Go Back   EQEmulator Home > EQEmulator Forums > Search Forums

Showing results 1 to 25 of 500
Search took 0.02 seconds.
Search: Posts Made By: NatedogEZ
Forum: Quests::Q&A 01-05-2023, 08:52 PM
Replies: 8
Views: 11,516
Posted By NatedogEZ
zone_controller.pl This npc can track the...

zone_controller.pl

This npc can track the deaths of any NPC so no need for signals and such


my $kill_count_69420 = 0;

sub EVENT_DEATH_ZONE {
if ($killed_npc_id == 69420) { #NPCID of...
Forum: Quests::Completed 03-17-2022, 03:50 PM
Replies: 3
Views: 15,172
Posted By NatedogEZ
Easy to use Tiered Item Generator

Assign this script to an in-game NPC and hand them the item you want to turn into a tiered item.

It will keep its base stats and increase the all the values listed in the script by the assigned...
Forum: Support::General Support 03-11-2022, 06:39 PM
Replies: 2
Views: 4,494
Posted By NatedogEZ
UPDATE items i SET i.nodrop = 0 WHERE ...

UPDATE items i
SET i.nodrop = 0
WHERE
i.scrolltype = 7 AND
i.scrolleffect > 0;


Obviously backup your database before running such a query :D
Forum: General::Server Discussion 02-15-2022, 10:26 PM
Replies: 8
Views: 12,135
Posted By NatedogEZ
Just add code to restrict it to a certain Status...

Just add code to restrict it to a certain Status which is a variable exported to client scripts


if ($status >= 200) { #CUSTOM GM ONLY COMMANDS
if ($text=~/#cooldowns/i) {...
Forum: General::Server Discussion 02-15-2022, 02:10 PM
Replies: 8
Views: 12,135
Posted By NatedogEZ
You are better off using # commands in perl or...

You are better off using # commands in perl or lua with custom global_player code

if ($text=~/#cooldowns/i) {
$client->ResetAllCastbarCooldowns();
$client->Message(13,...
Forum: Quests::Q&A 02-02-2022, 08:39 PM
Replies: 2
Views: 7,481
Posted By NatedogEZ
$rewards{$class} if you want to find simple...

$rewards{$class}

if you want to find simple mistakes like this just open a command prompt in the folder that has the perl script and just type...

perl -cw scriptname.pl


This will show any...
Forum: Quests::Q&A 12-26-2021, 06:13 PM
Replies: 6
Views: 11,993
Posted By NatedogEZ
http://spire.akkadius.com/quest-api-explorer?lang=...

http://spire.akkadius.com/quest-api-explorer?lang=perl&q=web
Forum: Quests::Plugins & Mods 11-18-2021, 07:03 PM
Replies: 5
Views: 13,098
Posted By NatedogEZ
Your plugins folder located inside the quests...

Your plugins folder located inside the quests folder? If so move it to base server folder... other than that no idea unless you show more info.
Forum: Quests::Plugins & Mods 11-18-2021, 01:14 PM
Replies: 5
Views: 13,098
Posted By NatedogEZ
https://github.com/ProjectEQ/projecteqquests/blob/...

https://github.com/ProjectEQ/projecteqquests/blob/master/plugins/check_handin.pl#L21
Forum: Support::Linux Servers 10-21-2021, 03:05 PM
Replies: 2
Views: 5,374
Posted By NatedogEZ
If you are using the PEQeditor the dropdown is by...

If you are using the PEQeditor the dropdown is by NPCID .. zonenumber * 1000

But if you want to change this setting you go into the config.php and change this value... set $npc_list to 2.. or...
Forum: Support::Linux Servers 10-05-2021, 02:06 PM
Replies: 4
Views: 4,383
Posted By NatedogEZ
Correct for other three files however...

Correct for other three files however spells_us.txt goes in the base folder RoF2Cleint/
Forum: Support::Linux Servers 10-05-2021, 01:59 PM
Replies: 4
Views: 4,383
Posted By NatedogEZ
Are you making sure to generate the spell file...

Are you making sure to generate the spell file and putting it in the client? The client won't allow you to mem a spell if your class is too low for that spell client side.
Forum: Quests::Q&A 07-03-2021, 07:06 PM
Replies: 4
Views: 8,994
Posted By NatedogEZ
sub EVENT_SPAWN { my @item_PHARA = (1628,...

sub EVENT_SPAWN {
my @item_PHARA = (1628, 1845, 1848, 2377, 10845, 10851, 10912, 10913, 24648); #loot list
#my $itemlist = @item_PHARA;
my $item1 = splice(@item_PHARA,...
Forum: Quests::Custom 06-18-2021, 06:04 PM
Replies: 0
Views: 6,263
Posted By NatedogEZ
Some useful scripts for Devs out there.

Test script for basic soulbinding that removes the cost and items directly from the player so you can make extremely complex turnins or very simple turnins. Players will no longer have to hand items...
Forum: EQEmu Operations Center 03-17-2021, 06:33 PM
Replies: 4
Views: 8,743
Posted By NatedogEZ
If someone wants to cherry pick the change I...

If someone wants to cherry pick the change I added to my personal peqphpeditor you are more than welcome to... it has a working color picker for items.
...
Forum: Support::General Support 03-12-2021, 06:42 PM
Replies: 4
Views: 2,918
Posted By NatedogEZ
Should post what you did to fix / figure out the...

Should post what you did to fix / figure out the issue incase anyone else has a similar issue and your post will help them :)

I'm sure it was something like a brain slip but either way it could...
Forum: General::General Discussion 10-24-2020, 03:14 PM
Replies: 7
Views: 5,114
Posted By NatedogEZ
on spawn i have.... ...

on spawn i have....

$npc->SetHP($npc->GetMaxHP());

at the end of the pet scaling code to make sure they are full HP after re-scale :D

Also I found my original code for it... but it has some...
Forum: General::General Discussion 10-22-2020, 07:34 PM
Replies: 7
Views: 5,114
Posted By NatedogEZ
Inside global_player.pl Signals the players...

Inside global_player.pl

Signals the players pet on level up to re-scale them...


sub EVENT_LEVEL_UP {
$client->Message(15, "Auto Skill Activating");
foreach my $skill ( 0 .. 42, 48 .. 54,...
Forum: Quests::Q&A 10-21-2020, 08:43 PM
Replies: 3
Views: 3,821
Posted By NatedogEZ
Well the original post is also missing a ","...

Well the original post is also missing a "," between data_buckets.key data_buckets.value

Also you don't need to put ";" at the end in DBI :P
Forum: Quests::Q&A 10-21-2020, 03:31 PM
Replies: 3
Views: 3,821
Posted By NatedogEZ
Try this sub EVENT_SAY { if ($text...

Try this

sub EVENT_SAY {
if ($text =~/read/i) {
$connect = plugin::LoadMysql();
$query = "SELECT key, value FROM data_buckets";
$query_handle = $connect->prepare($query);...
Forum: Support::Windows Servers 05-02-2020, 02:33 PM
Replies: 4
Views: 3,227
Posted By NatedogEZ
Crash log doesn't really help when that code...

Crash log doesn't really help when that code doesn't exist anymore when I go to look it up.
Forum: Support::Windows Servers 05-01-2020, 10:22 PM
Replies: 4
Views: 3,227
Posted By NatedogEZ
How old is that source?

How old is that source?
Forum: Quests::Q&A 06-17-2019, 06:06 AM
Replies: 10
Views: 6,477
Posted By NatedogEZ
Is this what you are trying to do? ...

Is this what you are trying to do?

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

Filters out stuff from a big ol hash
Forum: Quests::Custom 10-12-2018, 02:17 PM
Replies: 6
Views: 5,908
Posted By NatedogEZ
Could maybe try EVENT_ENTER .. but make sure to...

Could maybe try EVENT_ENTER .. but make sure to set a proximity first for it to trigger :)
Forum: Development::Bots 02-25-2018, 04:31 AM
Replies: 28
Views: 17,660
Posted By NatedogEZ
If they are casters the mob needs to be under...

If they are casters the mob needs to be under like 97% or something for them to start casting
Showing results 1 to 25 of 500

 
Forum Jump
   

All times are GMT -4. The time now is 05:10 PM.


 

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