Go Back   EQEmulator Home > EQEmulator Forums > Search Forums

Showing results 26 to 50 of 500
Search took 0.02 seconds; generated 66 minute(s) ago.
Search: Posts Made By: Congdar
Forum: Support::Windows Servers 09-27-2011, 02:15 PM
Replies: 5
Views: 7,178
Posted By Congdar
here's my start.bat @echo off cd .\logs ...

here's my start.bat

@echo off
cd .\logs
del *.log
cd ..
start world.exe
cls
echo Wait for World to get its IP from eqemulator.net
pause
Forum: Support::Windows Servers 09-27-2011, 02:00 PM
Replies: 5
Views: 7,178
Posted By Congdar
in the launcher table, put 10 in the dynamics...

in the launcher table, put 10 in the dynamics column
Forum: Support::Windows Servers 09-27-2011, 01:40 PM
Replies: 5
Views: 7,178
Posted By Congdar
not sure what this batch file is about. typically...

not sure what this batch file is about. typically for windows batch file to start the server you would have a line like:
start eqlaunch myzones
where myzones refers to db table: launcher
that...
Forum: Support::Windows Servers 09-27-2011, 11:24 AM
Replies: 2
Views: 5,664
Posted By Congdar
see if this helps ...

see if this helps
http://www.eqemulator.org/forums/showthread.php?t=33971&highlight=directx
Forum: Development::Bots 09-27-2011, 11:06 AM
Replies: 8
Views: 10,231
Posted By Congdar
what specific exploit are your trying to fix? ...

what specific exploit are your trying to fix?
How about just making it so you can't spawn bots while you have aggro?


if(!strcasecmp(sep->arg[1], "spawn") ) {
if(c->GetAggroCount() > 0) {...
Forum: Development::Database/World Building 09-27-2011, 10:47 AM
Replies: 44
Views: 73,144
Posted By Congdar
update variables set value=1 where...

update variables set value=1 where varname='DisableNoDrop';
Forum: Support::Windows Servers 08-31-2011, 04:07 PM
Replies: 4
Views: 7,202
Posted By Congdar
the respawntime column is in the spawn2 table ...

the respawntime column is in the spawn2 table
the timers are added to the respawn_times table in duration column
i believe it is in seconds
Forum: Support::Windows Servers 08-13-2011, 08:08 PM
Replies: 3
Views: 7,305
Posted By Congdar
check your db. gm status gets you in places...

check your db. gm status gets you in places regular status doesn't

SELECT short_name, long_name, min_level, min_status FROM zone where short_name like '%hateplane%';
Forum: Quests::Q&A 08-11-2011, 01:02 AM
Replies: 3
Views: 8,181
Posted By Congdar
i'm wondering if you are setting the timer...

i'm wondering if you are setting the timer correctly. I've seen them typically as quest::settimer("depop",10); and quest::stoptimer("depop"); and i'm not quite sure what you're doing here. do you...
Forum: Support::General Support 08-07-2011, 02:50 PM
Replies: 2
Views: 8,154
Posted By Congdar
if you are on windows 7 it might need this...

if you are on windows 7 it might need this directx update
http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=35
Forum: Support::General Support 08-07-2011, 02:03 PM
Replies: 2
Views: 6,648
Posted By Congdar
try posting on your servers forums, this is eqemu...

try posting on your servers forums, this is eqemu in general.
http://red69.eqpvp.com/
Forum: Quests::Q&A 08-05-2011, 04:26 PM
Replies: 7
Views: 7,067
Posted By Congdar
You on Linux? I mention this cuz if you set up...

You on Linux? I mention this cuz if you set up Visual Studio right it will catch the zone crashes and put you right on the line that it crashed on for further debugging.
Forum: Quests::Q&A 08-05-2011, 04:00 PM
Replies: 7
Views: 7,067
Posted By Congdar
i see the edit now... not sure what that...

i see the edit now... not sure what that SIGHUP(1) is. Any clues around that log line?
Forum: Quests::Q&A 08-05-2011, 03:58 PM
Replies: 7
Views: 7,067
Posted By Congdar
in logs with names like eqemu_quest_zone_0272.log...

in logs with names like eqemu_quest_zone_0272.log you would get perl msgs like
[08.02. - 11:17:56] Useless use of private variable in void context at plugins/formation_tools.pl line 364.
Forum: Quests::Q&A 08-05-2011, 12:53 PM
Replies: 7
Views: 7,067
Posted By Congdar
when you get a crash, do you not get any clues in...

when you get a crash, do you not get any clues in the logs or crash dumps?
Forum: Quests::Q&A 08-04-2011, 09:57 AM
Replies: 2
Views: 7,999
Posted By Congdar
It's likely that a Bot is triggering the...

It's likely that a Bot is triggering the EVENT_ATTACK and since a bot is not a client it fails. Try a quick test. Add a check in NPC::Damage() where EVENT_ATTACK is triggered
...
Forum: Quests::Q&A 07-30-2011, 12:28 AM
Replies: 16
Views: 16,307
Posted By Congdar
Yeah Trevius, it looks like a really cool...

Yeah Trevius, it looks like a really cool feature. I have an npc in mind to check it out on.
Forum: Quests::Q&A 07-29-2011, 02:09 PM
Replies: 16
Views: 16,307
Posted By Congdar
i have never tried this saylink feature, but you...

i have never tried this saylink feature, but you are basically redefining the variable when you have both

my $Toes = quest::saylink("Toes");
my $Toes = quest::varlink("25760");

and unless the...
Forum: Quests::Q&A 07-29-2011, 02:00 PM
Replies: 16
Views: 16,307
Posted By Congdar
you've used $Dragon_Charm1 and $dwarf for both a...

you've used $Dragon_Charm1 and $dwarf for both a varlink and a saylink and maybe others. You should organize your variables a bit so they're not so confusing with the same names and don't use the...
Forum: Development::Bots 07-24-2011, 02:32 PM
Replies: 25
Views: 28,283
Posted By Congdar
Thought i would post in this thread that this is...

Thought i would post in this thread that this is committed. svn 1982 or newer.
Forum: Development::Server Code Submissions 07-23-2011, 07:44 PM
Replies: 15
Views: 24,286
Posted By Congdar
svn 1982, thanks lerxst2112.

svn 1982, thanks lerxst2112.
Forum: Development::Server Code Submissions 07-23-2011, 03:51 PM
Replies: 1
Views: 9,061
Posted By Congdar
committed in svn 1981

committed in svn 1981
Forum: Development::Server Code Submissions 07-23-2011, 03:51 PM
Replies: 15
Views: 24,286
Posted By Congdar
committed in svn 1981

committed in svn 1981
Forum: Development::Bots 07-22-2011, 11:35 PM
Replies: 69
Views: 127,791
Posted By Congdar
Take a look at the archery setting. It's a db...

Take a look at the archery setting. It's a db setting that gets loaded into the object so no repeated reads to the db or anything like that.
I like the npc special attack idea. Maybe modify the...
Forum: Development::Server Code Submissions 07-22-2011, 06:18 PM
Replies: 15
Views: 24,286
Posted By Congdar
It worked this time but the diff is still off. ...

It worked this time but the diff is still off. You have two of the "picklock" sections and some of the other changes are already in the source.
Showing results 26 to 50 of 500

 
Forum Jump
   

All times are GMT -4. The time now is 02:35 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 - 2026, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3