Go Back   EQEmulator Home > EQEmulator Forums > Search Forums

Showing results 1 to 25 of 143
Search took 0.01 seconds.
Search: Posts Made By: werebat
Forum: Misc::Off Topic 03-08-2017, 09:13 AM
Replies: 1
Views: 3,728
Posted By werebat
Maybe he used the advice from your sig line.

Maybe he used the advice from your sig line.
Forum: General::Server Discussion 01-18-2017, 12:10 PM
Replies: 7
Views: 4,414
Posted By werebat
One line fixes all, for example: this line will...

One line fixes all, for example: this line will halve the hp's of all npcs

update npc_types set hp = hp * 0.5;

Backup your table first so if you mess up you can restore it.
Forum: General::Server Discussion 01-18-2017, 09:42 AM
Replies: 7
Views: 4,414
Posted By werebat
You can adjust the hps, ac and other stats of...

You can adjust the hps, ac and other stats of npc's via the npc_type table. I tried it before and it works well. Just keep in mind that if its too easy it may get boring pretty quick. Try setting...
Forum: Support::Windows Servers 01-12-2017, 09:18 AM
Replies: 539
Views: 652,965
Posted By werebat
Server not running. Did you try running as...

Server not running. Did you try running as administrator?
Forum: Support::General Support 12-06-2016, 10:07 AM
Replies: 38
Views: 14,788
Posted By werebat
Build from source and you can change the 12 to...

Build from source and you can change the 12 to whatever you prefer. I did it and it worked fine.
Forum: Support::General Support 04-06-2016, 08:31 AM
Replies: 15
Views: 6,884
Posted By werebat
.pl is perl. I know if you built the old manual...

.pl is perl. I know if you built the old manual way, ActiveState Perl was a requirement. Not sure if thats the case using the new way.
Forum: Support::Windows Servers 07-22-2015, 08:44 AM
Replies: 11
Views: 7,825
Posted By werebat
How about just disabling the PoK stones? Then ...

How about just disabling the PoK stones? Then you keep the new content but still have to travel to them the old fashioned way. I believe they are database driven. You could also disable the...
Forum: Support::General Support 05-22-2015, 08:56 AM
Replies: 6
Views: 3,083
Posted By werebat
Could it be the spell the ghouls are casting?

Could it be the spell the ghouls are casting?
Forum: General::Server Discussion 05-13-2015, 09:11 AM
Replies: 8
Views: 5,645
Posted By werebat
Actually, what you are describing is not...

Actually, what you are describing is not difficult at all. Use the server guide to build your own server first. Then its just a matter of knowing exactly how you want your mobs and gear to be...
Forum: Support::Linux Servers 02-13-2015, 02:12 PM
Replies: 5
Views: 3,699
Posted By werebat
You have to compile to allow bots. Using windows...

You have to compile to allow bots. Using windows there is an option to tick in the Cmake configuration. Not sure how to do it in Linux but its probably in the guide.

After compiling you need to...
Forum: General::General Discussion 02-05-2015, 09:43 AM
Replies: 6
Views: 5,323
Posted By werebat
I just use the Windows Server Setup Guide and the...

I just use the Windows Server Setup Guide and the Private Server setup to create mine. Works great.
Forum: Development::Development 01-29-2015, 09:37 AM
Replies: 33
Views: 76,229
Posted By werebat
I have been playing Live recently and noticed...

I have been playing Live recently and noticed that Merc healers (balanced) start to heal you when your health dips below 75%. In EQEmu it is set to 95%. Can this be adjusted to match Live? 95% is...
Forum: Development::Bots 01-24-2015, 09:38 PM
Replies: 28
Views: 12,130
Posted By werebat
5.1 not 5.5. At least in windows, 5.5 will not...

5.1 not 5.5. At least in windows, 5.5 will not work supposedly, not sure about Linux. I would try 5.1 as the guide says.
Forum: Development::Development 01-22-2015, 04:02 PM
Replies: 33
Views: 76,229
Posted By werebat
The mercs.sql appears to be incomplete. I had to...

The mercs.sql appears to be incomplete. I had to run the extra scripts from the below thread. Once I did that, the merc vendors worked fine and I was able to buy one.
...
Forum: Development::Bots 01-21-2015, 09:26 AM
Replies: 12
Views: 6,553
Posted By werebat
As of yesterdays build, the bot STR issue is...

As of yesterdays build, the bot STR issue is resolved. In previous builds, bots had an STR of 1 but now its back to normal. The HP problem still exists. So there is some progress.
Forum: Development::Bots 01-20-2015, 09:22 AM
Replies: 28
Views: 12,130
Posted By werebat
sounds like your mysql needs to be upgraded to...

sounds like your mysql needs to be upgraded to 5.1.
Forum: Development::Database/World Building 01-14-2015, 12:02 PM
Replies: 3
Views: 3,554
Posted By werebat
I am not in front of my eqemu computer but i...

I am not in front of my eqemu computer but i beleive this will work for your chance adjustment

update lootdrop_entries set chance = 50 where item_id in (select id from items where name regexp...
Forum: Development::Database/World Building 01-14-2015, 11:56 AM
Replies: 3
Views: 3,554
Posted By werebat
For backup you could say: create table...

For backup you could say:
create table backuplootdrop_entries as select * from lootdrop_entries;

This will make a copy of the lootdrop_entries table.
Forum: Development::Bots 01-13-2015, 06:22 PM
Replies: 28
Views: 12,130
Posted By werebat
That is a code issue and not the sql. Recent...

That is a code issue and not the sql. Recent changes affected the hp and STR values. My caster bots would fight until level 12 but now they just sit. They do cast but they wont melee.
Forum: Development::Bots 01-12-2015, 09:27 AM
Replies: 28
Views: 12,130
Posted By werebat
Here is the issue. I fixed it in on my build. ...

Here is the issue. I fixed it in on my build.

In the load_bots.sql there are two lines that need to be corrected.

197 DELIMTER \\
212 END \\

The problem is that you cannot use a backslash...
Forum: Development::Development 01-11-2015, 01:29 PM
Replies: 33
Views: 76,229
Posted By werebat
The AI on the healer mercs needs tweaking. ...

The AI on the healer mercs needs tweaking. Before level 10 my healer merc would cast heals when I was about 35% or so which is fine. Once she hit level 10, the healer merc would cast heals even if...
Forum: Development::Bots 01-10-2015, 11:14 AM
Replies: 12
Views: 6,553
Posted By werebat
As of latest build yesterday, I too can confirm...

As of latest build yesterday, I too can confirm what Riklin stated. Just suspend and unsuspend to get them active again.
Forum: Development::Bots 01-09-2015, 09:50 AM
Replies: 28
Views: 12,130
Posted By werebat
If you are using a recent build, bots are not...

If you are using a recent build, bots are not working properly anyway. The HP problem and spellcasting issue makes them unpredictable. Until that is resolved, the casters do not work. Not sure...
Forum: Support::General Support 01-08-2015, 12:11 PM
Replies: 2
Views: 3,017
Posted By werebat
Courtesy of the wayback archive: ...

Courtesy of the wayback archive:

https://web.archive.org/web/20130318001003/http://www.eqemulator.net/wiki/wikka.php?wakka=How
Forum: Development::Development 01-04-2015, 10:05 AM
Replies: 104
Views: 228,548
Posted By werebat
I was playing a zerker so thats why I listed it,...

I was playing a zerker so thats why I listed it, just trying to give details. I have not tried it with other classes. As for "not new", do you mean not new to RoF2? Because it works just fine in...
Showing results 1 to 25 of 143

 
Forum Jump
   

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