Go Back   EQEmulator Home > EQEmulator Forums > Search Forums

Showing results 1 to 25 of 30
Search took 0.00 seconds.
Search: Posts Made By: Wesell
Forum: Support::General Support 02-18-2010, 02:15 PM
Replies: 6
Views: 2,604
Posted By Wesell
You probably don't have permissions to save files...

You probably don't have permissions to save files in that directory then.

If you are running Windows 7 log in as an administrator then right-click notepad and select "Run as administrator". Try to...
Forum: Support::General Support 02-18-2010, 02:02 PM
Replies: 6
Views: 2,604
Posted By Wesell
What, specifically, are you trying to do?

What, specifically, are you trying to do?
Forum: Quests::Q&A 01-14-2010, 04:36 PM
Replies: 19
Views: 4,798
Posted By Wesell
Right, you need to pass the client as the first...

Right, you need to pass the client as the first parameter. Fixed up the last post a little.
Forum: Quests::Q&A 01-14-2010, 04:29 PM
Replies: 19
Views: 4,798
Posted By Wesell
Try this out: sub EVENT_SAY { if...

Try this out:

sub EVENT_SAY
{
if ($text =~/Hail/i)
{
quest::say ("Welcome to Citadel Of the Warlord , $name. Would you like me to [Scribe] your spells? Maybe you would like...
Forum: Quests::Q&A 01-14-2010, 04:07 PM
Replies: 19
Views: 4,798
Posted By Wesell
Might be helpful if you posted the entire script....

Might be helpful if you posted the entire script. It looks like you have a superfluous { in your script, but that might just be a cut/paste error.
Forum: Quests::Q&A 01-11-2010, 06:35 PM
Replies: 8
Views: 3,284
Posted By Wesell
quest::movepc is case sensitive, stop...

quest::movepc is case sensitive, stop camel-casing it.
Forum: Quests::Q&A 12-27-2009, 12:58 AM
Replies: 24
Views: 8,220
Posted By Wesell
Is the client turned to face south after movepc...

Is the client turned to face south after movepc or is the heading simply left at whatever it was?
Forum: Quests::Q&A 12-26-2009, 02:13 PM
Replies: 24
Views: 8,220
Posted By Wesell
What happens when you try this? ...

What happens when you try this?
quest::movepc(117,-931,-3471,182, $client->GetHeading())
Forum: Development::Database/World Building 12-18-2009, 06:43 PM
Replies: 4
Views: 3,484
Posted By Wesell
I was curious so I checked the code. ObjectID is...

I was curious so I checked the code. ObjectID is an optional parameter. If it's not specified highest id + 1 will be used automatically.
Forum: Development::Database/World Building 12-15-2009, 03:09 PM
Replies: 4
Views: 3,484
Posted By Wesell
Square brackets typically indicate optional...

Square brackets typically indicate optional parameters.
Forum: Quests::Q&A 11-16-2009, 06:13 PM
Replies: 1
Views: 2,597
Posted By Wesell
It's GetHateTop

It's GetHateTop
Forum: Quests::Q&A 10-23-2009, 11:34 PM
Replies: 15
Views: 7,081
Posted By Wesell
Just glanced at it, but it may just be improper...

Just glanced at it, but it may just be improper capitalization on the GetHeading method.
Forum: Quests::Q&A 10-23-2009, 09:18 PM
Replies: 15
Views: 7,081
Posted By Wesell
Try calling GetX and GetY on the mob returned by...

Try calling GetX and GetY on the mob returned by GetMobByNPCTypeID instead of on the ID returned by GetID.

my $revoltldrID = 189490;
my $ldrMob = $entity_list->GetMobByNpcTypeID($revoltldrID);...
Forum: Development::Development 10-14-2009, 05:24 PM
Replies: 48
Views: 20,033
Posted By Wesell
Well since this is already a pretty silly thread...

Well since this is already a pretty silly thread I'll respond. What I said was:


That statement is entirely true. You've mentally replace "work" with "source code". The word "work" is even...
Forum: Development::Development 10-14-2009, 02:54 PM
Replies: 48
Views: 20,033
Posted By Wesell
Uh, the GPL doesn't require EQC or anyone to...

Uh, the GPL doesn't require EQC or anyone to distribute their work. It only describes what will happen if they do.
Forum: Development::GeorgeS's Tools 09-25-2009, 11:31 PM
Replies: 19
Views: 6,127
Posted By Wesell
Windows Vista redirects writes to the Program...

Windows Vista redirects writes to the Program Files folder to a folder in your users folder. It's an attempt to maintain compatibility with apps that expect to be able to write to these directories...
Forum: Quests::Q&A 09-22-2009, 11:08 PM
Replies: 5
Views: 2,809
Posted By Wesell
You probably want to try that on the client...

You probably want to try that on the client instead of the id.
$spawner = $client_search->CastToMob();
Forum: Support::Windows Servers 09-17-2009, 05:36 PM
Replies: 40
Views: 9,473
Posted By Wesell
Yeah you could use the suggestions posted or you...

Yeah you could use the suggestions posted or you could use a hack like this to get guild membership working.


Index: EQEmuServer/common/guild_base.cpp...
Forum: Support::Windows Servers 09-17-2009, 05:00 PM
Replies: 40
Views: 9,473
Posted By Wesell
Also the MySQL documentation indicates that not...

Also the MySQL documentation indicates that not allowing default values on these types is the correct behavior so it would probably be better to fix up the source to insert a value into these fields...
Forum: Support::Windows Servers 09-17-2009, 04:57 PM
Replies: 40
Views: 9,473
Posted By Wesell
Change the sql-mode setting in my.ini to a blank...

Change the sql-mode setting in my.ini to a blank string. MySQL defaults this setting to STRICT_TRANS_TABLES on Windows and blank on Linux so the behavior of the storage engine is slightly different...
Forum: Support::Windows Servers 09-16-2009, 10:21 PM
Replies: 40
Views: 9,473
Posted By Wesell
Could one of you post the log entries that are...

Could one of you post the log entries that are generated when you try to set a character's guild?
Forum: Support::Windows Servers 09-05-2009, 09:49 AM
Replies: 1
Views: 2,012
Posted By Wesell
Subversion (SVN) is a source control system. You...

Subversion (SVN) is a source control system. You can use a subversion client to connect to the server and download a copy of the source. Once you have the a copy of the source you can modify it to...
Forum: Support::Windows Servers 08-13-2009, 03:31 PM
Replies: 36
Views: 6,287
Posted By Wesell
svn co...

svn co http://projecteqquests.googlecode.com/svn/trunk/quests/ peq-quests

Works with both the Subversion client and SlikSVN; just verified initial check out and update.

Make sure you are not...
Forum: Support::Windows Servers 08-13-2009, 11:46 AM
Replies: 36
Views: 6,287
Posted By Wesell
Are you trying to checkout the PEQ source like he...

Are you trying to checkout the PEQ source like he was in that quote? If so I can tell you the SVN defiantly works because I just checked out the source this very moment to test. What command...
Forum: Development::Server Code Submissions 08-12-2009, 05:22 PM
Replies: 13
Views: 3,896
Posted By Wesell
Yeah, I noticed. I just thought that this would...

Yeah, I noticed. I just thought that this would be an interesting little bit of info for anyone who was following this thread. Maybe bumping this server code submissions thread was not the most...
Showing results 1 to 25 of 30

 
Forum Jump
   

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