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 5 of 20
<
1
2
3
4
5
6
7
8
9
15
>
Last
»
Showing results 101 to 125 of 500
Search took
0.02
seconds; generated 78 minute(s) ago.
Search:
Posts Made By:
AndMetal
Forum:
Spell Support
06-06-2009, 02:52 PM
Replies:
12
Latest Patch - SK lifetap buff spells not working
Views:
10,444
Posted By
AndMetal
Which equals 500%, or a 5x chance to proc instead...
Which equals 500%, or a 5x chance to proc instead of 4x. Are we sure that's how it should be done? If it was, I would think we could just add 100 to each calculation (which it seems like may be done,...
Forum:
Spell Support
06-06-2009, 08:28 AM
Replies:
5
resists and dots
Views:
8,033
Posted By
AndMetal
Yes, it can be done.
Yes, it can be done.
Forum:
Spell Support
06-06-2009, 08:23 AM
Replies:
12
Latest Patch - SK lifetap buff spells not working
Views:
10,444
Posted By
AndMetal
I did some checking, and it looks like we may be...
I did some checking, and it looks like we may be adding too much to the modifier from the spell:
[COMBAT__PROCS] Xamlagar: Proc chance 0.11 (0.07 from bonuses)
[COMBAT__PROCS] Xamlagar: Spell...
Forum:
General::General Discussion
06-03-2009, 04:14 PM
Replies:
14
Curious about Haste items
Views:
13,288
Posted By
AndMetal
Maybe it's because 0% doesn't really do anything...
Maybe it's because 0% doesn't really do anything and they didn't want to start at 5%?
Forum:
Development::Database/World Building
06-03-2009, 04:12 PM
Replies:
8
PEQDB inquiry.
Views:
10,667
Posted By
AndMetal
Just a thought, but I wonder if it would be...
Just a thought, but I wonder if it would be possible to have BOTH the way it's done now PLUS a repository for Revision to Revision updates? The latter is a pure nightmare for new servers (reminds me...
Forum:
Spell Support
06-03-2009, 04:06 PM
Replies:
12
Latest Patch - SK lifetap buff spells not working
Views:
10,444
Posted By
AndMetal
From what I can gather after looking through the...
From what I can gather after looking through the source, we didn't used to take into account the chance the spell had to proc, which I believe is what Wolftousen was trying to correct (and for the...
Forum:
Development::GeorgeS's Tools
05-25-2009, 10:25 PM
Replies:
3
Search Items table
Views:
6,996
Posted By
AndMetal
You can also use bitwise AND (&): SELECT *...
You can also use bitwise AND (&):
SELECT * FROM items WHERE races & '512' AND classes & '512'
This would select all items that can be used by an Ogre Shaman, not just items that can only be...
Forum:
General::General Discussion
03-30-2009, 04:20 AM
Replies:
58
Private Login Server
Views:
75,102
Posted By
AndMetal
1 recommendation from me: dynamically create an...
1 recommendation from me: dynamically create an eqhost.txt file to make it easier to switch between servers:
<?php
header('Content-Description: File Transfer');
header('Content-Type:...
Forum:
General::General Discussion
03-29-2009, 03:27 PM
Replies:
45
Opinion from Community
Views:
55,932
Posted By
AndMetal
I second. I think it would be good to have...
I second.
I think it would be good to have an option to turn off the "public" part of it for those who either just want to play on a LAN, or just don't want to be connected to the public login...
Forum:
General::General Discussion
03-28-2009, 05:01 PM
Replies:
13
Reality Check
Views:
10,755
Posted By
AndMetal
I would say possible, but not probable. Until...
I would say possible, but not probable. Until computer users stop running viruses (see Zombie Computer (http://en.wikipedia.org/wiki/Zombie_computer)), you can report issues to ISPs and they will...
Forum:
Support::General Support
03-11-2009, 10:46 PM
Replies:
3
Adjusting Server Currency
Views:
6,739
Posted By
AndMetal
Not trying to derail the thread, but here is a...
Not trying to derail the thread, but here is a relatively easy way to change the profile blob using a MySQL query:
This would give a character with an ID of 748 100 platinum.
In theory, you...
Forum:
Development::Server Code Submissions
03-09-2009, 02:04 PM
Replies:
12
Berserker Rage Volley Fix
Views:
12,603
Posted By
AndMetal
It looks like the main reason Rage Volley doesn't...
It looks like the main reason Rage Volley doesn't work is we don't have SE_SkillAttack (http://code.google.com/p/projecteqemu/source/browse/trunk/EQEmuServer/zone/spdat.h#300) implemented. If we...
Forum:
General::General Discussion
03-09-2009, 01:38 AM
Replies:
6
Can't post in Dev forums.
Views:
6,618
Posted By
AndMetal
Your primary group is "Users Awaiting Email...
Your primary group is "Users Awaiting Email Confirmation" and your secondary group is "Registered Users". As a moderator, I don't have the ability to change it, though.
Forum:
Development::Server Code Submissions
03-07-2009, 04:06 PM
Replies:
12
Berserker Rage Volley Fix
Views:
12,603
Posted By
AndMetal
Just a recommendation, but it would be better to...
Just a recommendation, but it would be better to use IsEffectInSpell(spellid, effect) (http://code.google.com/p/projecteqemu/source/browse/trunk/EQEmuServer/zone/spdat.cpp#415) than hard coding the...
Forum:
Spell Support
03-07-2009, 03:28 PM
Replies:
11
Creating new spells
Views:
12,070
Posted By
AndMetal
When I setup the database, I created 2 Perl...
When I setup the database, I created 2 Perl scripts to accomplish either: /utils/export_spells.pl (http://code.google.com/p/projecteqemu/source/browse/trunk/EQEmuServer/utils/export_spells.pl) &...
Forum:
General::General Discussion
03-07-2009, 02:34 PM
Replies:
2
New Dawn
Views:
6,055
Posted By
AndMetal
Is this referring to EverQuest: New Dawn...
Is this referring to EverQuest: New Dawn (http://www.amazon.co.uk/Everquest-New-Dawn-UK-Server-EverQuest-UK/dp/B00006YZ7N) (for UK players)?
Forum:
Development::Development
02-18-2009, 11:23 PM
Replies:
254
Starting Work on SoF Opcodes/Structs
Views:
228,819
Posted By
AndMetal
Alright, so I was able to get Consume working...
Alright, so I was able to get Consume working (somewhat), but it doesn't look like we have the correct structure or OpCode for OP_Stamina, which is sent to the client after eating something. Here's...
Forum:
Development::Development
02-18-2009, 04:02 PM
Replies:
254
Starting Work on SoF Opcodes/Structs
Views:
228,819
Posted By
AndMetal
I started working on OP_Consume the other night...
I started working on OP_Consume the other night (otherwise, client freezes when you right-click on food), but since I haven't really worked with the encoding/decoding of packets much, I'm not sure...
Forum:
Development::Development
02-15-2009, 06:35 AM
Replies:
254
Starting Work on SoF Opcodes/Structs
Views:
228,819
Posted By
AndMetal
Not sure if it's been noticed, but 16777216 is...
Not sure if it's been noticed, but 16777216 is 1000000 in hex, so it looks like we're getting 3 extra bytes in there. In the log, it doesn't look like slot 1 was sent, so that's probably it. I've...
Forum:
Support::Windows Servers
02-14-2009, 07:21 PM
Replies:
3
Problem with cvs
Views:
5,678
Posted By
AndMetal
It sounds like the install location for cvs isn't...
It sounds like the install location for cvs isn't included in the environment variable (http://en.wikipedia.org/wiki/Environment_variable) PATH...
Forum:
Development::Development
02-14-2009, 07:00 PM
Replies:
254
Starting Work on SoF Opcodes/Structs
Views:
228,819
Posted By
AndMetal
Not sure if this will help, but EQItems has an...
Not sure if this will help, but EQItems has an SVN for their itemcollector which may help find the serialization info.
I think this is from Live:...
Forum:
Spell Support
02-13-2009, 11:05 PM
Replies:
5
Cleric buff, vie spell line
Views:
8,076
Posted By
AndMetal
Can someone describe what it should do?
Can someone describe what it should do?
Forum:
Development::Development
02-11-2009, 04:10 PM
Replies:
19
Thoughts on Fixing the Prereq AA issue
Views:
27,017
Posted By
AndMetal
This is the final migration query, which worked...
This is the final migration query, which worked for me when I tested it out a while ago:
To clarify, it worked great for me when I worked on it a few months ago, but because of the need to...
Forum:
General::Server Discussion
02-11-2009, 03:19 PM
Replies:
3
Non legit server?
Views:
5,987
Posted By
AndMetal
I'll have A Work in Progress...
I'll have A Work in Progress (http://www.andmetal.net) back up eventually, I just need to run cable for the server in its new location (money being the only limiting factor to do that). I may be able...
Forum:
Support::General Support
02-04-2009, 04:18 PM
Replies:
47
Login Server Down?
Views:
42,099
Posted By
AndMetal
I would like to clarify, we don't want to...
I would like to clarify, we don't want to decentralize the loginserver (look at the WoW emulators), but I think making it a distributed platform would help for redundancy (like a P2P network?),...
Showing results 101 to 125 of 500
Page 5 of 20
<
1
2
3
4
5
6
7
8
9
15
>
Last
»
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
11:33 AM
.
-- 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 - 2026, Jelsoft Enterprises Ltd.
Template by
Bluepearl Design
and
vBulletin Templates
- Ver3.3