EQEmulator Home
>
EQEmulator Forums
>
Search Forums
Search Results
User Name
Remember Me?
Password
Home
Forums
Register
Members List
Today's Posts
Search
Search Forums
Show Threads
Show Posts
Advanced Search
Go to Page...
Page 1 of 2
1
2
>
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
eqhost.txt
Views:
4,356
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
eqhost.txt
Views:
4,356
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
any idea's why this wont work
Views:
11,293
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
any idea's why this wont work
Views:
11,293
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
any idea's why this wont work
Views:
11,293
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
Race dependant teleport
Views:
5,854
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
quest::movepc()
Views:
14,787
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
quest::movepc()
Views:
14,787
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
Placing Objects
Views:
7,216
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
Placing Objects
Views:
7,216
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
using a $mob function GetTopHate
Views:
4,831
Posted By
Wesell
It's GetHateTop
It's GetHateTop
Forum:
Quests::Q&A
10-23-2009, 11:34 PM
Replies:
15
binding NPCs to other NPCs
Views:
10,429
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
binding NPCs to other NPCs
Views:
10,429
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
EQClassic's Source Code
Views:
31,853
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
EQClassic's Source Code
Views:
31,853
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
Spells not showing on Items
Views:
11,370
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
Spawning a mob on a player death & loc
Views:
4,636
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
cant create guilds
Views:
17,935
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
cant create guilds
Views:
17,935
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
cant create guilds
Views:
17,935
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
cant create guilds
Views:
17,935
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
The source?
Views:
2,943
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
Updating to Newest Stuff
Views:
11,031
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
Updating to Newest Stuff
Views:
11,031
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
Maxlevel in addition to NPC level
Views:
6,358
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
Page 1 of 2
1
2
>
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
General
General::General Discussion
General::Server Discussion
General::News
General::News::Polls
Support
Support::General Support
Idiot Posters
Spell Support
Support::Windows Servers
Support::Linux Servers
Support::Packetcollector
Support::MiniLogin
Quests
Quests::Q&A
Quests::Custom
Quests::Completed
Quests::Submissions
Quests::Plugins & Mods
Quests::need work
Quests::LUA
Development
Development::Development
Development::Bots
Development: Custom Code
Development::Server Code Submissions
Development::Feature Requests
Development::Bugs
Development::Bug Reports
Development::Database/World Building
Development::Tools
Development::GeorgeS's Tools
EQEmu Operations Center
KayotRO
Old Eq
OpenZone
OpenZone:: Q&A
Simple Client
OpenZone::Tutorials
OpenZone::Bug Reporting
Misc
Misc::Off Topic
Misc::Screenshots
Archives
Archive::Support
Archive::General Support
Archive::Windows Servers
Archive::Linux Servers
Archive::Tutorials/Howto's
Tutorials--Outdated Use the Wiki
Tutorial ALL NEW PEOPLE READ THIS
Tutorials::Discussion
Tutorials::Requests
Tutorials::Submissions
Tutorials::Needs work
Archive::Packetcollector
Archive::Development
Archive::Development
Archive::Bugs
Archive::Tools
Archive::Quests
Archive::Database/World Building
EQ2 Development
Archive::Misc
Archive::Off Topic
Archive::Screenshots
OpenEQ
OpenEQ::General Discussion
OpenEQ::Support
OpenEQ::Development
OpenEQ::Bug reporting
OpenEQ::Plugins
All times are GMT -4. The time now is
01:49 PM
.
-- Default Style
---- EQEmulator
EQEmulator
-
Archive
-
Top
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