Go Back   EQEmulator Home > EQEmulator Forums > Search Forums

Showing results 476 to 500 of 500
Search took 0.03 seconds; generated 102 minute(s) ago.
Search: Posts Made By: Derision
Forum: Support::General Support 02-25-2010, 03:17 PM
Replies: 5
Views: 4,958
Posted By Derision
Just click on the bot and click 'Invite' like you...

Just click on the bot and click 'Invite' like you would do to invite a player to your group.
Forum: Support::Windows Servers 02-25-2010, 03:07 PM
Replies: 2
Views: 4,493
Posted By Derision
It depends on what version of the database you...

It depends on what version of the database you are running and what version of the code.

E.g. If you downloaded the Rev1180a windows executables from the SVN, and got the latest PEQ DB from that...
Forum: Support::Windows Servers 02-25-2010, 11:17 AM
Replies: 5
Views: 6,115
Posted By Derision
My suspicion is that these are due to a Mob...

My suspicion is that these are due to a Mob object being destroyed (when it dies) and it's memory being freed, but the pointer to it not being removed from the entity_list.

It would help if you...
Forum: Support::Windows Servers 02-25-2010, 09:29 AM
Replies: 5
Views: 5,936
Posted By Derision
The correct order of statements in load_bots.sql...

The correct order of statements in load_bots.sql appears as if it should be:

source player_tables/botguildmembers.sql;
source player_tables/bots.sql;
source player_tables/botadventuring.sql;...
Forum: Support::Windows Servers 02-24-2010, 04:28 PM
Replies: 5
Views: 5,936
Posted By Derision
Edit your bots.sql and wherever you see CREATE...

Edit your bots.sql and wherever you see CREATE VIEW IF NOT EXISTS (I think there are only two occurrences of it), change it to CREATE VIEW (i.e. drop the IF NOT EXISTS clause).
Forum: Spell Support 02-23-2010, 02:52 PM
Replies: 9
Views: 7,043
Posted By Derision
What's probably happening is that the client can...

What's probably happening is that the client can determine for itself which targets are valid for the spell, so it can tell you straight away that the target is invalid.

For targets the client...
Forum: Development::Development 02-22-2010, 06:44 PM
Replies: 6
Views: 6,200
Posted By Derision
Ah, didn't realise you needed absolute offsets...

Ah, didn't realise you needed absolute offsets for SQL purposes.

I think I've used code like this in the past to find the offsets:

uchar *PPStartAddress = (uchar*) &m_pp;
uchar...
Forum: Development::Development 02-22-2010, 04:39 PM
Replies: 6
Views: 6,200
Posted By Derision
As Joligario says, some of the offset comments...

As Joligario says, some of the offset comments are wrong, so just trust your math :) and correct the comments to have the correct values.

Also, the Unknown values should have a suffix that...
Forum: Quests::Q&A 02-20-2010, 04:42 AM
Replies: 1
Views: 6,160
Posted By Derision
Create your new custom titles in the database and...

Create your new custom titles in the database and give each a unique 'title_set' value, e.g. in this example I have created a new title with title_set 10:

INSERT INTO `titles` (
`id` ,...
Forum: Support::General Support 02-18-2010, 02:12 PM
Replies: 12
Views: 10,150
Posted By Derision
How many columns do you have in your...

How many columns do you have in your adventure_template table ? That query won't execute on my system:

mysql> INSERT INTO adventure_template...
Forum: Support::General Support 02-17-2010, 05:30 PM
Replies: 1
Views: 3,881
Posted By Derision
When you connect to the Project 1999 server, one...

When you connect to the Project 1999 server, one of the first messages you see, is:

MESSAGE OF THE DAY: Welcome to Project1999! Please visit http://www.project1999.org for server info.


So, go...
Forum: Support::Windows Servers 02-16-2010, 02:48 PM
Replies: 10
Views: 8,314
Posted By Derision
I think this is because you have MySQL running in...

I think this is because you have MySQL running in 'strict' mode. (Not sure if the install guide still tells you to uncheck the strict mode box when installing MySQL on Windows).

I've updated...
Forum: Support::General Support 02-13-2010, 01:33 PM
Replies: 1
Views: 3,771
Posted By Derision
Report this on the Irreverent server forums: ...

Report this on the Irreverent server forums:

http://irreverentlabs.com/EQ/
Forum: Support::General Support 02-11-2010, 02:19 PM
Replies: 2
Views: 4,515
Posted By Derision
The TZ/VZ server owner(s) have chosen not to...

The TZ/VZ server owner(s) have chosen not to allow people with Secrets Of Faydwer to connect (that's why it says 'No SoF' at the end of the server name).

Probably due to some bugs in SoF support,...
Forum: Support::Windows Servers 02-11-2010, 11:10 AM
Replies: 2
Views: 4,236
Posted By Derision
If either client is not in a group, that code...

If either client is not in a group, that code will cause a crash because GetGroup() will return a NULL pointer.

This should work:

Group *g1 = c1->GetGroup();
Group *g2 = c2->GetGroup();
...
Forum: Support::Windows Servers 02-10-2010, 05:22 PM
Replies: 1
Views: 4,260
Posted By Derision
This is a common issue with Vista (and maybe...

This is a common issue with Vista (and maybe Window 7). If you search the forums for 'create eqhost', you will get quite a few threads, e.g.
...
Forum: General::Server Discussion 02-09-2010, 01:36 PM
Replies: 5
Views: 6,456
Posted By Derision
EZ Server is in the server list, both at Server...

EZ Server is in the server list, both at Server Select, and here: http://www.eqemulator.org/index.php?pageid=serverlist
Forum: Support::Windows Servers 02-08-2010, 02:12 PM
Replies: 2
Views: 4,126
Posted By Derision
Is the task still in your active task Window...

Is the task still in your active task Window (Alt-Q) when you log back in ? I assume yes, since you say the players have to remove the task and then accept it again.

If the answer to the previous...
Forum: Support::Windows Servers 02-08-2010, 02:02 PM
Replies: 12
Views: 7,430
Posted By Derision
If your database is at Rev1052 and you want to...

If your database is at Rev1052 and you want to upgrade to 1143, you need to go here:

http://code.google.com/p/projecteqemu/source/browse/#svn/trunk/EQEmuServer/utils/sql/svn

and download each...
Forum: Support::Windows Servers 02-05-2010, 06:18 PM
Replies: 4
Views: 5,151
Posted By Derision
I think this requires a source code change, e.g....

I think this requires a source code change, e.g. if you look in world/client.cpp line 1177 you will see:

pp.skills[SENSE_HEADING] = 200;


You would need to add:

pp.skills[FISHING] = 100;
...
Forum: Quests::Q&A 02-05-2010, 05:57 PM
Replies: 3
Views: 5,132
Posted By Derision
Take a look at the blocked_spells table in the...

Take a look at the blocked_spells table in the database:


mysql> describe blocked_spells;
+-------------+-----------------------+------+-----+---------+----------------+
| Field | Type ...
Forum: Support::Linux Servers 02-05-2010, 04:55 PM
Replies: 1
Views: 4,220
Posted By Derision
Looks like you are running a version of the...

Looks like you are running a version of the server that is not compatible with your database, in particular those errors suggest you need to source at least these database updates:

...
Forum: Support::Windows Servers 02-05-2010, 04:32 PM
Replies: 5
Views: 5,564
Posted By Derision
I don't know if this is your problem, but azone...

I don't know if this is your problem, but azone looks for the S3D first, so rename arena.s3d to arena.s3d.bak and then run

azone arena


and then it should process the .EQG and produce a...
Forum: Support::General Support 02-05-2010, 04:22 PM
Replies: 5
Views: 5,780
Posted By Derision
Sounds like maybe you are running Vista and for...

Sounds like maybe you are running Vista and for some reason don't have write permissions to your EQ directory (so it can't save your settings).

You could try running EQ as an administrator, or if...
Forum: Support::General Support 02-05-2010, 03:21 PM
Replies: 4
Views: 4,889
Posted By Derision
Try this: ...

Try this:

http://forums.station.sony.com/eq/posts/list.m?topic_id=35894

I vaguely remember having that issue when I installed Titanium years ago and I am sure following the instructions in the...
Showing results 476 to 500 of 500

 
Forum Jump
   

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