Go Back   EQEmulator Home > EQEmulator Forums > Search Forums

Showing results 1 to 25 of 238
Search took 0.02 seconds.
Search: Posts Made By: Neiv
Forum: Quests::Q&A 02-20-2009, 01:07 AM
Replies: 4
Views: 2,569
Posted By Neiv
As a start, two of your "ulevel"s have no $...

As a start, two of your "ulevel"s have no $ before them.

You may want to try reordering your "ulevel" statements to reflect a descending order, as follows:


sub EVENT_SAY
{
if...
Forum: General::Server Discussion 02-17-2009, 09:27 PM
Replies: 16
Views: 5,179
Posted By Neiv
. . . What?

. . . What?
Forum: General::Server Discussion 02-17-2009, 01:13 AM
Replies: 16
Views: 5,179
Posted By Neiv
No sure how I missed this when it was posted in...

No sure how I missed this when it was posted in December. I have this same battle scene, but in a custom zone with a replica of the Hornburg. It's triggered by a ring turn-in quest. The server...
Forum: Spell Support 02-14-2009, 09:16 PM
Replies: 6
Views: 4,429
Posted By Neiv
Try OpensSpell ...

Try OpensSpell (http://wizardportal.dyndns.org/eqemu/OpenSpell_1.1.zip). Not sure it changes the properties box, but it can change characteristics (such as the text effect).
Forum: Development::Database/World Building 02-09-2009, 10:48 PM
Replies: 13
Views: 3,636
Posted By Neiv
DOH! Boy, that's a lot of hours changing db...

DOH!

Boy, that's a lot of hours changing db entries for nothing. Thanks, that fixed it.
Forum: Support::Windows Servers 02-09-2009, 09:34 PM
Replies: 10
Views: 2,985
Posted By Neiv
Yeah, I edited the txt file myself last month....

Yeah, I edited the txt file myself last month. It doesn't work.
Forum: Development::Database/World Building 02-09-2009, 09:27 PM
Replies: 13
Views: 3,636
Posted By Neiv
Okay, coping the legs attributes didn't work...

Okay, coping the legs attributes didn't work either. So I tried just memming the spell and casting it on a player. Still does not take hold. I tried casting it on another player. Still does not take...
Forum: Development::Database/World Building 02-09-2009, 03:34 PM
Replies: 13
Views: 3,636
Posted By Neiv
I'll try the Legs when I get home. Wasn't there a...

I'll try the Legs when I get home. Wasn't there a cleric epic that had a heal clicky? I don't remember if that was Live or Shards of Dalaya.
Forum: Development::Database/World Building 02-08-2009, 11:09 PM
Replies: 13
Views: 3,636
Posted By Neiv
Same problem with the Scimitar settings--"your...

Same problem with the Scimitar settings--"your spell did not take hold."
Forum: Development::Database/World Building 02-08-2009, 10:07 PM
Replies: 13
Views: 3,636
Posted By Neiv
Okay, more perplexity. I copied the attributes...

Okay, more perplexity. I copied the attributes from the bracer to a necklace (instead of a plant), except for the clicky (which I retained as light healing). The click heals self, but when I target...
Forum: Development::Database/World Building 02-08-2009, 08:08 PM
Replies: 13
Views: 3,636
Posted By Neiv
Unfortunately, potion as itemtype (21) seems to...

Unfortunately, potion as itemtype (21) seems to be the only one that actually casts the spell. The difference between this and the Bracer of the Hidden is that the bracer is a worn item (hence, the...
Forum: Development::Database/World Building 02-07-2009, 08:37 PM
Replies: 13
Views: 3,636
Posted By Neiv
Clicky Spell

I have an item that I'm trying to make into a clicky for healing (lesser healing). It works fine, but only on self. I've looked through the entire row for the item and can't seem to find how to turn...
Forum: Support::Windows Servers 02-07-2009, 04:49 PM
Replies: 0
Views: 1,918
Posted By Neiv
Assembly Kits and Combines

I'm having some trouble with an armor materials combine, but not sure where to look to try to fix it. Is an assembly kit (combine box) considered a tradeskill per se , and is it thereby included in...
Forum: General::News 02-01-2009, 11:49 PM
Replies: 65
Views: 87,421
Posted By Neiv
I guess I'm not getting it. I read the wikki...

I guess I'm not getting it. I read the wikki description, but I'm still not sure what exactly this tool does, or under what circumstances I would use it. Can someone explain?
Forum: Quests::Q&A 01-31-2009, 10:56 PM
Replies: 2
Views: 2,432
Posted By Neiv
For one thing, both if ($text =~/spy/i ...

For one thing, both

if ($text =~/spy/i

and

if ($text =~/Crush/i

. . . are missing closing parentheses
Forum: Development::Feature Requests 01-25-2009, 07:28 PM
Replies: 10
Views: 5,841
Posted By Neiv
Which to modify?

eqstr_us.txt?

eqstr_en.txt?

eqtext.txt?

Some other file?
Forum: Development::Feature Requests 01-25-2009, 07:22 PM
Replies: 10
Views: 5,841
Posted By Neiv
Just downloaded it, thanks. Didn't know it...

Just downloaded it, thanks. Didn't know it existed, but I'm no developer.

Chaos, do I take it, then, that the file I referenced is the file I need to work with to make the class-name and...
Forum: Support::Windows Servers 01-25-2009, 05:45 PM
Replies: 2
Views: 1,993
Posted By Neiv
Really odd issue with eqtheme.mp3

x = EQ Theme
y = New Theme
z = Old EQ Theme

I have changed out my eqtheme.mp3 (x) (in the Everquest folder) to a different intro music clip (y) (named the same as the old). Hence, when I start...
Forum: Development::Feature Requests 01-25-2009, 02:46 PM
Replies: 10
Views: 5,841
Posted By Neiv
Chaos, mind sharing what file you edited exactly?...

Chaos, mind sharing what file you edited exactly? I have attempted to make changes to the eqstr_us.txt file in the EQ folder, but it breaks the game.
Forum: Quests::Q&A 01-11-2009, 11:28 PM
Replies: 9
Views: 3,227
Posted By Neiv
Upon reflection, shouldn't this be rewritten to...

Upon reflection, shouldn't this be rewritten to something like this?
sub event_say
{
if ($text =~/hail/i)
{
if (defined($qglobals{var_name}))
{
if ($qglobals{var_name} >= 1)
...
Forum: Quests::Q&A 01-11-2009, 10:56 PM
Replies: 9
Views: 3,227
Posted By Neiv
Try this modified version: sub event_say ...

Try this modified version:

sub event_say
{
if (defined($qglobals{var_name}))
{
if ($qglobals{var_name} >= 1)
{
if ($text =~/hail/i)
{
Forum: Support::Windows Servers 01-11-2009, 10:48 AM
Replies: 10
Views: 3,136
Posted By Neiv
I did try it since fixing the file, and it did...

I did try it since fixing the file, and it did not work. But then I tried switching out the mam,southkarana_chr entry for your proposed entry (mam,mam_chr), and it still did not work. Then I tried...
Forum: Support::Windows Servers 01-11-2009, 08:01 AM
Replies: 10
Views: 3,136
Posted By Neiv
Bingo! The file was in the folder, but I thought...

Bingo! The file was in the folder, but I thought it strange that it was modified on 9/30/08 and only 1kb in size. So I looked at the original and found it much larger. I overwrote that file and now...
Forum: Support::Windows Servers 01-11-2009, 12:21 AM
Replies: 10
Views: 3,136
Posted By Neiv
Yep, 250. And no elephants in southkarana. Anyone...

Yep, 250. And no elephants in southkarana. Anyone else know what might be happening here?
Forum: Support::Windows Servers 01-10-2009, 02:46 PM
Replies: 10
Views: 3,136
Posted By Neiv
According to at least one source...

According to at least one source (http://www.eqemulator.net/wiki/wikka.php?wakka=ModelReference), the correct entry is mam,southkarana_chr . I tried your entry and it made no difference. I agree; I...
Showing results 1 to 25 of 238

 
Forum Jump
   

All times are GMT -4. The time now is 03:28 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