-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpatches-2001-1.txt
1953 lines (1505 loc) · 83.1 KB
/
patches-2001-1.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.....................................................................
------------------------------
January 9, 2001 3:00 am
------------------------------
***Patch Day***
We're happy to present today's patch, which focuses primarily on
addressing issues that have been brought forth by EverQuest players. We
appreciate the opportunity to spend some time focusing on specific
issues important to you. Today's patch includes the following:
*Disciplines*
- The "Resistant" Discipline now lasts 5 minutes instead of the
previous 1.
- The "Holy Forge" Discipline now lasts 5 minutes instead of the
previous 2.
- The "Weaponshield" Discipline now lasts 20 seconds instead of the
previous 15.
- The "Leechcurse" Discipline now lasts 20 seconds instead of the
previous 15.
- The "Deftdance" Discipline now lasts 15 seconds instead of the
previous 10.
- The "Puretone" Discipline now lasts 4 minutes instead of the previous
2.
- The "Sanctification" discipline now lasts 15 seconds instead of the
previous 10.
- The "Unholy Aura" Discipline now gives a 50% bonus to Harmtouch
(compared with the previous 25%) and causes it to save versus disease,
which should result in even fewer resists in most high-level
encounters.
*Spells*
- "Lay on Hands" has been improved starting at 40th level.
- The "Summon Corpse" spell is now available to Shadowknights.
- Corrected a bug that was causing damage while using the "Trueshot"
Discipline to be the same regardless of the quality of your bow.
- The spells "Focus of Spirit" and "Visions of Grandeur" now stack.
- "Harmtouch" is now resisted as if it were a "Lifetap" spell, meaning
that it is all-or-nothing, and nearly unresistable with exception to
encounters that are immune to magic or out of the acceptable level
range. In addition, maximum damage for Harmtouch has been increased
starting at 40th level.
- We fixed a bug that caused "Lure" type spells (Wizards) to be
resisted more than they should have been in certain types of
encounters.
- Melee attack timers will no longer be reset when a SK, Paladin, or
Ranger cast a spell. Previously these classes had to wait a full attack
delay after casting before they would attack via melee again.
*Miscellaneous*
- You may now adjust the clipping plane in the Hole. Previously, the
clipping plane was fixed. Many people requested the ability to bring
the clipping plane closer to allow them to improve their client's
performance.
- Fixed several problems with trade-skill components that were not
dropping. Also added some new recipes.
- Fixed the Iksar "Shackle of Steel" quest.
- The additional options for /camp (/camp server, /camp desktop) have
been implemented. /camp server will take you to the server-selection
screen. /camp desktop will cause EverQuest to terminate and take you to
the desktop.
*Root and Snare*
Root-type spells and "snare" type spells now use a separate spell
effect.
Previously, "Root" spells would overwrite any snare effect upon the
target. When the root would wear off, the target began moving at full
speed. With this change, when root wears off, snare will still be in
effect. This has a few added effects on the other end.
For instance, root will no longer cancel SoW or Journeyman's Boots
effects. It also allowed us to correct a long-standing bug that was
allowing bards to cancel root on themselves by playing Selo's
Accelerando if Selo's was in effect at the time that the bard was
rooted. As mentioned in a previous patch where the first part of this
bug was fixed, this was not the intended effect.
*Looting NODROP Items*
A new command is now available to EverQuest players.
In order to prevent the accidental looting of NODROP items, the
/lootnodrop command has been added to the client. The command supports
three options: ALWAYS (Default) - You will be presented with a yes/no
confirmation box when attempting to loot any NODROP item. SOMETIMES -
You will be presented with a yes/no confirmation box when attempting to
loot any NODROP items that your race and/or class cannot use. NEVER -
NODROP items will be looted without confirmation.
It is highly recommended that you DO NOT CHANGE this from the default
option, as the GM staff cannot assist in cases of accidental looting.
- The EverQuest Team
.....................................................................
------------------------------
January 17, 2001 3:00 am
------------------------------
*Baltimore Fan Faire - Last Chance*
Monday is the registration deadline for the Baltimore Fan Faire! We are
almost sold out so hurry and visit
http://everquest.station.sony.com/fanfaire/fanfaire.html before you
miss your chance to attend this event!
*Patch Day*
The primary focus of today's patch is to implement changes noted in the
new Producer's Letter which can be found at
http://everquest.station.sony.com/news/letter.shtml
It is HIGHLY RECOMMENDED that you read the Producer's Letter before
playing EverQuest. It contains some unprecedented and exciting
enhancements to gameplay.
In addition to these changes, the following changes have been
implemented:
*Bug Fixes*
- Fixed a bug that caused "root" and "snare" type spells to function
incorrectly when stacked. They should now stack properly.
- Fixed a bug that negated the "instrument modifier" for bards using
Selo's, causing them to run slower than they otherwise would.
- Fixed a bug that allowed two or more spells that grant levitation to
stack. Levitation spells should not stack.
- The "Track Corpse" spell now works.
- Tracked down and eliminated several bugs that were causing a very
small percentage of people to crash when zoning or upon entering the
game.
- Fixed a problem with some Ulthork armor that caused it to disappear
on death if the wearer was of extremely low level.
- Tserrina's Whip has been fixed. If you received one prior to today's
patch, you will need to trade out your whip with a GM in order to get
one that works correctly.
- Last week's patch attempted to fix Celestial Elixir, Celestial
Healing, and Torpor, so that they would stack another similar spell,
unintentionally causing it to stop stacking with standard regeneration
spells. This has been fixed. The downside to this fix is that these
spells will now overwrite the "Call of Bones" series. As the three
former spells are cast to save a character's life, this solution
appears to be the most beneficial for all of those involved.
- The stronger /lootnodrop options will no longer prompt you for
confirmation when looting your own corpse. It is highly suggested that
everyone reset their option to the strongest security available:
/lootnodrop ALWAYS (always ask for confirmation).
- Added some code to address an issue reported by a few players, that
being that an NPC named "Ragefire" would die and not leave a corpse.
Though we were unable to reproduce this problem in testing, the code we
added should function as a catch-all for this problem. Please be sure
to let us know how this goes.
*Changes/Enhancements*
- While not mentioned in the Producer's Letter, the Zone Experience
Modifier has also been increased in Guk (guktop), by roughly 12%.
- "Lay on Hands" has been enhanced again to heal more hitpoints.
- Overlooked in the last patch message, new spells were made available
to Rangers and Paladins in the upper levels.
- "Voice of the Berserker", a beneficial spell, no longer drains mana
over the duration of the spell.
- The maximum duration of "Strength of Nature" has been increased.
- A new spell for magicians is now available in game.
- The "Shield of the Eighth" spell will now last a number of minutes
equal to your level.
- You can now use the arrow and enter keys to select characters in the
character select screen. In addition, the last character you chose will
be automatically hilighted when entering that screen. This value is
stored in the EQCLIENT.INI file as "LastCharSel=0-7"
- The ranger's "Trueshot" discipline has had its damage increased after
analyzing data from its fix last week. Prior to the last patch, all
bows, while under the discipline, were hitting as if they were 45dmg
bows regardless of the delay. Last week's patch fixed it so that damage
was based on the damage of the bow. This weeks patch increases damage
bonuses in relation to delay (longer delays yield better damage
bonuses).
- You can now reverse the left and right channels on your speakers
using the /reversesound command. This should be very useful for those
who have had to place their speakers backwards due to cable lengths.
- Made some improvements to Paw, Mistmoore, and The Hole, to address
some concerns brought forth by the players. Both zones had some
problems that would cause them to be exceedingly difficult in some
cases.
- The EverQuest Team
.....................................................................
------------------------------
January 24, 2001
------------------------------
*QA Openings*
Our Quality Assurance department is looking for some AVID EQ gamers to
join us as testers at the San Diego branch. If you would like more
information please visit www.verant.com or mail your resume to
[email protected] with "QA Openings" as the Subject.
Applicants should include their time playing EverQuest, and their
number of characters and their respective classes and levels as part of
their resume.
*Small Patch*
The EverQuest Team is currently hard at work evaluating, planning, and
documenting our project plans for the current year. As such, we did not
plan game updates during this period, forecasted to last a few weeks.
However, given today's server maintenance being performed by our
Operations Team, we were able to include a few small updates. These
include some minor polishing on the Plane of Mischief, as well as the
placement of the wizard's Velious teleport spells on merchants.
Very soon, we'll be back to our continual plans to enhance the game
world. We'll be sure to let you know what we have planned as we can.
- The EverQuest Team
.....................................................................
------------------------------
January 31, 2001 3:00 am
------------------------------
*File Download*
The file just downloaded contains some new art for use in game in the
future.
- The EverQuest Team
.....................................................................
------------------------------
February 21, 2001 3:00 am
------------------------------
*Patch Day*
Today's patch contains a wide variety of enhancements and changes. Due
to the number of changes being made, this list is primarily a summary.
Extended descriptions of the changes and the reasoning behind them can
be solicited on the EverQuest Message Boards.
*Spell and Skill Changes*
Druids, Shaman, and Clerics:
--- Superior Healing moved to level 51 for shamans and druids.
--- Casting difficulty of Superior Heal reduced (less fizzles)
--- New level 55 Druid and shaman spell, Chloroblast, similar to remedy
for clerics.
--- New Druid spell at level 60, upgrade to superior healing, Natures
Touch.
--- Created a new spell effect for Celestial Healing, Celestial Elixir,
and Torpor. This will allow them to stack with all other spells, save
spells of the same type (Heal over time). Prior to this, all heal-over-
time spells followed the same rules as regeneration spells.
--- Reduced the casting difficulty of Remedy.
--- Lowered recast time on Wake of Karana
Paladins:
--- Added Endure Magic spell at level 30
--- Added Resist Magic at 55
--- Moved Guard spell from 49 to 39
--- Moved Armor of Faith from 53 to 49
--- Added New level 53 paladin spell: Divine Glory
--- Added New level 59 spell: Celestial Cleansing
--- Defense skill cap made exactly same as warriors
--- Added Yaulp 4 at 60 and enhanced.
Shadowknights:
--- Removed artificially inflated mana cost for pre level 50 lifetap
spells. Please note that post-50 lifetap spells never had an inflated
mana cost.
--- Moved Spirit Tap to level 55
--- Moved Drain Spirit to level 57
--- Added Drain Soul at level 60
--- Grim Aura added at level 22 and enhanced
--- Moved Shieldskin to level 34
--- Pet buff added at 29
--- Added Diamondskin spell at 59
--- Defense skill cap made exactly same as warriors
--- Due to the recent improvements to "Harmtouch", it is doing much
more damage than it would before and unbalances PvP. As such it will
now do less damage in PvP (68% of PvE, down from 80%). In addition,
Shadowknights on the PvP servers were routinely killing themselves via
non-XP losing means and attacking other players with Harmtouch
immediately upon respawn. In order to address this situation, Harmtouch
is no longer automatically "recharged" by death on the PvP Servers.
--- The "Lifeleech" discipline now increases hit probability in
addition to its other effects.
Rangers:
--- Added Endure Cold at 22
--- Added Skin Like Nature at 59
--- Added FireFist at 22
--- Moved Bramblecoat from 49 to 39
--- Added Spikecoat at 49
--- Added resist cold at 55
--- Added Panic Animal at 22
--- Moved Jolt to 51
--- Moved Spirt of Wolf from 39 to 30
--- Added Cinder Jolt (fire-based Jolt spell) at 55.
--- Offense and weapons skill made identical to warriors
--- Added See Invisible at 39
Bards:
--- Added new level 20 Bard Song: Cassindra`s Chant of Clarity
--- Bards defensive skill made exactly the same as a warriors
--- Changed it so that the bard spell Denon's Desperate Dirge to
increase damge by 10pts per level over 45. Also made it so the spell
does 20% more damage using the Puretone discipline.
Magicians:
--- Added new level 59 spell: Valiant Companion
--- Added new level 39 spell: Summon Companion
--- Rain spells no longer count pets against total number of entities
they can damage (all rain spells)
--- Added level 29 spell for Mages: Expedience
Enchanters:
--- Lowered recast time on Visions of Grandeur
*Bug Fixes*
--- Aggressive and Defensive disciplines have been fixed. Before they
would only affect damage taken and not affect damage dealt out. Now
they affect both as designed.
--- Fixed the bug with going to the spellbook when the inventory window
was up in fullview mode. It should work now. Also, fixed a minor bug
where if you were in normal mode and tried to go to the spellbook from
inventory via /book or the keymapped key it would not go, and it would
make the done button not work properly for the inventory mode.
--- Fixed NPC melee ranges to be the same as for player characters. In
other words, if you can hit the NPC, he can hit you. This bug was a
problem with one dragon that could be hit, but could not hit back.
--- Fixed a bug that made it impossible to "Call of the Hero" someone
out of water or lava.
--- Fixed the proc on the Chilled Scythe. Owners of this item will need
to swap it out with a GM.
--- The Kromzek Surveyor Scope now fits in the "Ranged" slot rather
than the "Ammo" slot as before.
--- Fixed a bug that caused the two single-target bard snare songs to
break too soon in some cases.
--- Fixed a bug whereby NPCs would consider the race of a player prior
to the loading of the faction table upon zoning or logging in. This
would cause people to be attacked by things that normally like them.
--- Players should now be properly removed from the group regardless of
how they exit the game.
*Misc Changes*
--- Added text labels to the fullview inventory window "body" slots
(Available only to Velious Subscribers)
--- Added the ability to toggle those labels on and off. Use
/invwinlabels [on/off] (or no arguments to toggle). This is saved in
the eqclient.ini file in the [Defaults] section with the key
InvWinLabels=[TRUE/FALSE]
--- Increased the pre-50 bind-wounds cap for rogues and warriors.
--- Pickpocket now works to a max of 5 levels below you, or level
45...whichever is greater... You can pickpocket NPC up to level 55 if
you are level 60.
--- The mouse pointer will now move at a multiple of its normal speed
when you adjust the MousePointerSpeedMod setting in the eqclient.ini
file. You can set that multiple on-the-fly with the /mousespeed
command.
--- The "AutoHelp" feature that can be set under the options menu has
been enhanced. Spell casters in particular might want to turn it on and
try depressing the ALT key. It's perfect for refreshing your memory in
regards to your spell lineup.
--- If you are interrupted while trying to cast a spell that uses a
component, you will no longer use that component. Jewelers should be
very pleased with this change.
--- Reduced the casting difficulty (fizzle rate) of all spells over
level 56. Spells have always previously been set up so that it's
usually more efficient to use a spell from a previous circle than the
current one. The formula did not take into account the fact that
everyone stops at 60.
--- Changed it so that players will now lose experience when they die
in the Arena in Kael Drakkel. It seems that people were fighting giants
in that arena in order to avoid the death penalty.
--- Naked PC corpses that have experience and are above level 30 will
now last 3 hours instead of 3 minutes.
--- Avatar and Focus of Spirit should now stack
--- Raised the pre and post 50 bind wounds cap for paladins, clerics,
druids, and shaman.
*Item Changes*
--- The effect on the "Frost Giant Beard" can now be used at 35th level
rather than level 50.
--- The Wurmslayer will now fit in a bag.
--- Iksar can now use the Ashenbone Shield
--- Chandged Crystallized Shadow leggings to rentable
--- Changed Gorilla Hide Leggings to show up as leather, was cloth
before
--- Changed Envy from a piercing weapon to a shield so players could
Bash with it. Envy is a parrying dagger.
--- The Shralok Pack is now LORE. It was set to pending-lore some time
ago.
--- The Guardian and Sentry Armor bracers are no longer LORE.
--- Donal's Breastplate can now only be used on any individual target
once every 7.5 minutes. This addresses some of the balance issues that
became apparent given the existence of a mana-free complete heal.
*Trades and Crafts*
--- Fixed the Gator Roll baking recipe.
--- Repaired the notetext instructions for creating a Mixing Bowl with
pottery.
--- Repaired Holgresh Fur Cap and Holgresh Fur Moccasins tailoring
recipes.
--- Made it so that the file is returned in addition to the hammer when
a character fails to forge any of the various chain jointings.
--- Repaired Recipe for Enchanted Tier`Dal Adamantite Bracelet
--- Made it so that the Dwarven Smithy Hammer is returned on a failure
to forge Brellium Chain Jointing.
--- Repaired Field Plate Boots smithing recipe
--- Changed the name of the smithed Enchanted Cabilis Scale armor to
Imbued Cabilis Scale armor for naming convention reasons.
--- Repaired the recipe for converting 3 Enchanted Large Adamantite
Bricks into 1 Enchanted Block of Adamantite in the Tier`Dal Forge, it
was previously only possible in the Oggok Forge.
--- Made it so that the Bread Tin is returned upon a failure to bake
bread.
--- Mithril and Velium Bonings will be stackable.
--- Mithril Studs will be stackable.
*NPC AI - Hate*
We've made a number of changes to NPC AI, specifically to the section
dealing with target-selection, or what's commonly referred to as
"Hate". It is not so much that NPCs react differently to hate now than
before, but that we've changed the way that hate is awarded.
--- We reduced the amount of hate that can be caused by a proc. Due to
the high proc rates at upper levels, the amount of hate generated from
procs, and the spells that were selected for those procs, made keeping
the attention of the creature much too easy a task for the tank.
Simply, it nearly eliminated the challenge of keeping a foes attention
at levels above 50.
--- We've capped the amount of hate that can be awarded to most
casters, specifically for debuff-type spells like the Malo and Tash
series. The hate calculation for these spells takes into account the
number of hitpoints of the NPC and did not "play nice" with the
increased HP limit of Velious. It explains why Enchanters, for
instance, would complain that casting a Tash spell would lead to near-
instant death.
--- We've redressed the amount of hate generated by heal spells.
Previously, and *partly* due to a bug, the high level heal spells such
as superior heal or complete heal would generate no more hate than
greater heal. In fact, so little hate was generated by these spells
that it made controlling NPC aggression trivial. Heal spells will now
generate an amount of hate more in line with the number of hitpoints
actually healed. Due to our desire to leave the lower level game more
or less untouched, two separate caps have been placed for targets level
50 or below, and 51 or above. Heal spells will generate significantly
less hate for targets below level 51 than those at or above that level.
--- We've also re-evaluated ways that players have to reduce their own
hate. While spells in place to allow this are OK, the Evade skill
(possessed by rogues) let them out of their damage too easily. A rogue
that successfully evaded would immediately drop to a level of hate
lower than someone who was in the awareness range, but hadn't done
anything to really upset the creature such as damage it or heal its
foe. This problem was exacerbated by the increase of the size of the
hate list implemented with Velious.
*Tracking*
Tracking now works in full view for all classes that can use it, and
sports a nifty scroll bar that allows players to see everything on the
list. In addition, the /trackplayer setting is now saved to the
eqclient.ini file.
The following options have been put in for Rangers only:
--- /tracksort
--- /trackfilter
*/tracksort options beginning with R are reverse order
*Hybrid Casting*
Hybrids that cast spells in combat were taking double penalties at
higher levels. The casting times of their spells went up, and the
amount of melee damage they do per second went up. This results is
having to take longer to cast spells, and losing more damage/second for
each second taken in casting. To help offset this, Rangers, Paladins
and Shadowknights casting non-beneficial spells that have casting times
greater than or equal to 3 seconds, now get a 3 % reduction in casting
time for each level over 50. 3% at 51, 6% at 52, etc., to 30% at 60.
Again, this applies only to non-beneficial spells.
- The EverQuest Team
.....................................................................
------------------------------
March 6, 2001 3:00 am
------------------------------
***Patch Day***
*General Changes*
-- Doubled the chance gain skill points in skills that are above 200.
-- Fixed a bug that disallowed casting of the Donal's Breatplate on
others once casted upon yourself.
-- The spell scrolls for Grim Aura should now all reflect usability by
SKs
-- Fixed a bug that would allow melee players to open a spellbook via
/book or alt+b.
-- Merchants will now recognize Iksar as a valid race.
-- New bind locations have been added to three zones in the world - One
on Antonica and two others on Kunark. NPCs at these locations can fill
you in on the details. Good hunting.
-- The casting time for four cleric brestplates sporting the "Celestial
Healing" effect has been increased to one minute. We understand that
this severely limits the use of that effect and we are currently
discussing alternate effects to place on those items in the next patch.
We did, however, need to address the 300pt per tick regen that could be
placed and kept on the group tank. When we've decided on the new
affect, it will be applied to those items retroactively.
-- Numeric skill values will be shown on character skill display for
skill values over 100. Values under 100 still show the qualitative
identifiers.
-- Players have expressed concern about accidentally inspecting other
players. You can now turn on or off your ability to inspect other
players by typing /inspect.
-- Those of you with z-axis mouse wheels on your mice may use them over
the chat window.
-- Fixed "Breath of the Sea". It was mistakenly set to be unresistable.
-- Same-zone evac-type spells will now cause you to reload the current
zone. This is a necessary step to ensure that you are removed from all
hatelists and clean up your pet.
-- "Voice Graft" will no longer show the spawn number (Jobaber00) of
your pet.
-- You will now receive a message when you are being bandaged.
-- The tracking skill cap for Druids has been raised to 125. It was the
intent for druids to be better at tracking than they were, however
before the scroll bar, smaller skill numbers were often considered
better. With the tracking improvements from the last patch, this
increase was appropriate.
-- Increased the number of hitpoints healed by Celestial Cleansing.
*NPC AI Adjustments*
-- Level 60 players with the taunt skill will now have a chance to
taunt creatures that are level 60 to 65. Previously, players could only
taunt creatures below their level.
-- NPCs that are mesmerized or stunned will now only add a very small
amount of hate when they see you cast beneficial spells on their
enemies. Prior to this, they would add full hate when they saw you do
this. This is why NPCs would always jump the cleric after breaking Mez.
-- Fixed a bug that would cause NPCs to add too much "temporary hate"
when a player would sit down in front of them.
-- The maximum amount of "hate" that an NPC can add when witnessing a
heal to targets above level 50 has been decreased substantially.
-- Hate from heals is also now calculated at a lesser number than the
number of hitpoints healed. Previously, healing one hitpoint would
cause one point of hate. Now, healing 3 hitpoints will cause 2 points
of hate.
*Velious Music*
Velious subscribers should run the Velious Patch to pick up new mood
music for some Velious Zones. Let us know what you think of the new
compositions.
*EQGems*
A new "mini-game" has been added to the EverQuest client. EQGems is our
first effort aimed towards allowing people to engage in different
activities while playing EverQuest. Based upon the success of EQGems,
we may explore opportunities for other mini-games in the future, even
some that are multiplayer in and of themselves. Type /gems to play.
- The EverQuest Team
.....................................................................
------------------------------
March 9, 2001 12:00 am
------------------------------
*E'ci and The Rathe Movelog*
We will be opening a new server and moving characters from the E'ci and
The Rathe servers to this new server upon the request of the customer.
If you choose to move your characters to the new server, please be
aware that all of your characters on the old server will be moved to
the new server.
To request to have your characters moved to the new server, all you
need to do is type "/movelog yes" into the chat window while playing a
character on that server during the time that the move log is open.
We will be opening the move log for these two servers on Friday, March
16th, 2001 at 6:00 pm. PST (which is Saturday morning at 2:00 am GMT).
We will be closing the move log on Sunday, March 18th, 2001 at 11:59 pm
PST (7:59 am on Monday the 19th GMT). The new, yet unnamed, server
should be opened some time during the week of March 19th. We'll
announce the exact date as soon as we can.
There are a few things to keep in mind when choosing to move your
characters to the new server. The most important thing to keep in mind
is that character corpses will not be moved with the characters. So it
is important to make certain that you have looted all of the corpses
that you want to loot before the characters are moved.
Also, characters names are unique on the new server. Because characters
will be moving from two separate servers onto the new one, there may be
cases where two characters with the same name are created on the new
server. Because character names must be unique, one of the two
characters will be chosen at random and have an 'x' added to the end of
their name. If you find that one of your characters has had an 'x'
tacked onto their name after the move and you would rather have a new
name, please contact your GM by using the /petition function. The GM
will help you to change the name of your character.
Guild structures do not follow the characters to the new server. We
will be unable to reestablish guilds until at least a week has passed
after the split. On any day after the new server has been up for eight
days, the guild leader can /petition for a GM to help them reestablish
the guild. Please do not petition for this before seven days have
passed, we will not be able to set up your guild before then.
We will not be moving characters back to the old server, so make
certain that you want to move your characters before you type "/movelog
yes". And we will not be moving characters for those that fail to
execute the movelog command during the stated window of opportunity.
- The EverQuest Team
.....................................................................
------------------------------
March 14, 2001 3:00 am
------------------------------
***EverQuest Turns Two***
Two years ago this Friday, EverQuest was launched, forever changing the
course of online gaming. Today EverQuest boasts nearly 360,000 active
subscribers, and a two-year retention rate of 65%. Peak usage tops
89,000 simultaneous users with average peak usage at roughly 87,000.
The EverQuest community continues to grow daily.
We've put up a page on the EverQuest website to help celebrate
EverQuest's achievement and to thank our loyal fans. Over the next
couple of days we will be posting interesting content from EverQuest's
humble beginnings, as well as a few surprises. Check it out!
http://everquest.station.sony.com/2ndanniversary/index.jsp
*Ever Changing, Evolving, Expanding*
The Warrens:
As part of our two-year celebration, we're pleased to announce the
release of "The Warrens", a free expansion zone located on Odus. "The
Warrens" is a low-to-mid level dungeon and the home of the Kobolds on
Odus. You can patch the Warrens by running the "Optional Patch".
In addition to filling-out the continent of Odus, "the Warrens" will
also serve as a platform to try out some of the new ideas brought forth
by members of the team and the public aimed at addressing some common
gameplay issues. We would like to see what options might be open to and
enjoyed by the players in the future.
The first issue addressed in the Warrens is the problem of higher level
characters competing with lower level characters for loot on lower
level creatures. To address this issue, in the Warrens, a group that
"outclasses" a particular foe will not receive any loot that is MAGIC,
LORE, or NODROP. All other loot will drop. "Outclassing" a foe is
defined as having a group makeup such that no one in your group
receives experience from the kill. This can happen if, for instance,
the foe is "green" to all group members, or if the group makeup is of
such a wide level range that the system determines the fight was
unbalanced using regular experience rules.
Any time that an NPC would have dropped special loot and does not due
to it being outclassed, a message indicating that the combat was
"trivial" will be displayed to the group.
As time goes on, we will be implementing new gameplay subsets and
adjustements in the Warrens. Please be sure to let us know what you
think!
The Planes:
The Planes of Fear and Hate have been updated as part of our two-year
celebration. Adventurers in the Plane of Fear will notice that some
high-level foes are now available. Rewards for former "boss npcs" have
been moved down to underlings that are roughly as powerful as the old
bosses were.
The Plane of Hate has also received a large update, but this one also
includes the opening of a previously undiscovered part of the zone, now
full high-level expansion-oriented content. Much as with Fear, rewards
from bosses have been moved.
Epic Quests:
As part of the Plane updates, we've made several adjustments to Epic
quests for a number of classes. Previously, questers of many classes
were put in direct competition with regular non-questing adventurers
for a few coveted spawns. In these cases, a new step has been added to
separate the "Epic Encounter" NPCs from the "Epic Quest" NPCs.
For those who are mid-quest, all quest requirements have remained the
same. In other words, if you turn the same items into the same NPC, the
same reward applies. What has changed is that some components may be in
a different location from where you expect them. It is recommended that
you check with the last NPC in line or other adventurers to find where
you need to go next.
***Patch Day***
Along with the big announcements above, today was a patch day as well:
- Fixed a bug that allowed exploitation of the period of time between
character control being established and loading of character faction
tables.
- Fixed the Dagger of Frost. Its special item flags were improperly
removed in the last patch.
- The spell, Mark of Karn, has been enhanced to heal more per hit.
- The effect on the Celestial Elixir Breastplates has been changed to
the enhanced Mark of Karn. The casting time on these items has also
been changed to 9 seconds.
- NPCs in Thurgadin will no longer stop traveling when you /hail them.
- Fixed a problem present in Nagafen's Lair and the Plane of Hate that
caused framerate to drop over time.
- Shift-clicking on a stack of items will cause you to pick up the
whole stack. This is in addition to CTRL-clicking on a stack, which
will cause you to pick up one. These both also work for coins now as
well as items.
- In addition to the above, holding down the shift key while clicking
the "Sell" button in the vendor screen will cause you to sell the
entire stack of items if a stack is selected. For example, you can sell
20 peridots by selecting the stack, and shift-clicking "Sell". I'd
recommend though that you give them to your neighborhood cleric first
though :) The ability to buy stacks is on the list for implementation
in the near future.
- There are a ton of new recipies for trade skill users out there.
Check your books.
- There are a bunch of new quests as well.
- It appears that we fixed a bug with the Mend skill that caused it to
be unavailable for a few seconds after it was supposed to be ready for
use. Let us know if there are any further problems.
- Foraging items will now yield a message giving you some idea of what you've foraged.
Please remember that the /movelog for the Rathe and E'ci is scheduled
for this weekend. Please read the message below for details on the
/movelog.
*A Message From Customer Service*
We regularly receive requests from customers that want their characters
moved from one server to another, or from one account to another.
Unfortunately, due to the EverQuest EULA, the number of requests that
we receive, the desire to maintain stable server communities and
economies, and other problems associated with character moves, we can
not move characters across servers or accounts.
It is important for the integrity of the server that items from a
server remain on that server. We also feel that it is important that
characters that have built up a reputation, good or bad, have to live
with the consequences of their decisions, and are not allowed to
retreat from that reputation by changing servers.
The only exception to this rule is when we open a Movelog for moving a
large number of characters to new servers. At no other time will we
move a character in such a fashion.
- The EverQuest Team
.....................................................................
------------------------------
March 27, 2001 2:00 am
------------------------------
***Fan Faire Reminder***
Registration for the San Diego Fan Faire closes on Wednesday, March
28th, and we are running out of spaces. Once all the spaces are taken,
we will not be accepting any further registrations (or walk-ins). So if
you plan to attend sign up before someone else gets your spot. Head
over to www.everquest.com to register.
*** Patch Day ***
*Spell Changes and Additions*
- A new teleportation spell has been added to the game for both Druids
and Wizards. These are self-only gate spells to the Dreadlands. These
spells should be available on the more exclusive spell vendors in
Norrath.
- Increased the drop rate on some Kunark spells to coincide with the
narrowing of the creatures carrying those spells as the game evolves.
- Wizards now have access to a new type of spell that only works on
certain types of target. Generically called 'bane' spells, a few are
now available in the game. May your quest for such spells be
successful.
*Item Changes*
- Changed the effects on the Singing Steel Boots and Greaves. After a
fair amount of concern from players, we have removed the summon food
and water effects from these items. They have been replaced with
modified versions of Aria of the Eagles (boots) and Appalling Screech
(greaves).
- The Incandescent Bracer can now be worn on the wrist rather than the
waist.
- The Incarnadine Breastplate must now be worn to activate.
- Changed spell effects on Pauldrons of the Fearsome and Fearsome
Shield to right click and worn to activate.
*Bug Fixes*
- Fixed a bug that was causing some players to zone into the Warrens at
the wrong location.
- Corrected an error with the Bixie Sword Blade, changing its delay
from 6 to 16.
- Fixed a bug where Iskar Monks were unable to Feign Death after
Foraging.
- Kodiaks in the Great Divide are now seen as animals.
- Toxdil, the wandering rogue poison vendor, will now sell to
characters even when he is away from his home.
*Enhancements*
- Fixed a problem that occurred when players mistyped /guild. Typing
/guildd in the chat window is the shortcut for typing /guilddelete.
/guildd now has a confirmation box so that such an error should no
longer lead to the accidental deletion of a guild.
- Added /showspelleffects. Using this toggle ('on' or 'off') a player
can turn on or off the display of particle effects for spells. This
will only affect spells, not world effects like waterfalls or weapon
particle effects. This should allow you to turn off many of the effects
that hamper rendering performance, inducing effects of spells, while
still being able to see some of the awesome effects, like those on
certain paladin weapons...
- Added server-side filtering for chat and combat messages. This will
allow you to turn off guild chat, shouts, auctions, oocs, 'my misses',
'others misses', 'others hits', 'attacker misses me', PC spells (all
options), NPC spells and Bard songs (all options) at the server instead
of at the client. This can reduce that amount of data sent to you over
your connection, and can help those with slower connections with better
performance and connectivity.
- Ships will now be announcing their arrival in most zones. They will
also be announcing their progress to any zone they travel through. Any
of those zones that they are not currently making announcements in will
be added in the next patch or two.
- Shift - Left and Shift - Right will now repeat in the chat window.
This means that when editing what you've typed, you can just hold down
the Shift and Left Arrow keys and the cursor will move left until it
reaches the beginning of the line or until you release the keys.
- The spell slot number will now show up in front of the spell name
when you press Alt to cast a spell using the Alt-Spell Number method.
- View perspective in wolf form has been fixed. First-person view will
now be on level with the wolf, rather than a few feet above it. At the
same time, perceiving other players in wolf form will appear to be
standing on the ground instead of floating a few feet above it.
- Trade skill success and failure messages will be sent to the
craftsperson's group instead of just the craftsperson, as long as the
craftsperson is using the proper ingredients. Failure of the craftsman
to use the proper ingredients will result in no failure message being
sent.
- In order to prevent a few trade scams, money can no longer be removed
from a trade window. You will have to cancel the trade and start over
to adjust the amount of money involved in the trade.
- We're now sending hitpoint updates to the casters of direct damage
spells no matter how far away they are when the spell lands. This will
allow those casters that try to stand as far back as possible to get
updates even when their range indicates that the messages should be
surpressed.
*Quest*
Several new quests have been added as well, so don't be afraid to talk
to the folks of Norrath, they might have new information for you.
- The EverQuest Team
.....................................................................
------------------------------
April 4, 2001 3:00 am
------------------------------
** New and Changed Features **
- Guild Message of the Day. Guild Officers and Leaders will be able to
type /guildmotd to set up a Guild Message of the Day (GMotD). From then
on any time a member of that guild logs in they will see the message
with the name of the message sender added at the front, so you will
know who sent the message. Any guild member will also be able to read
the GMotD by typing just /guildmotd and the message will be displayed
again. The GMotD will be erased if the server comes down, however. You
will have to reset the GMotD when the server comes back up.
- /assist changed and improved. It should be much more reliable now. It
also will target whatever the assisted person has targeted. The
assisted person does not need to have auto-attack on for /assist to
work.
- Fixed a problem with /corpse that kept it from working on corpses
that were too far above or below you.
** Skill Change **
- Foraging changed so that if you are getting the hungry and thirsty
messages, your next successful forage will always be drink or food. We
have also decreased the chance of foraging fishing grubs a bit and
increased the chance that you will forage water.
** Spell Changes **
- Acumen now overwrites See Invisible.
- Translocate now has the proper spell gem.
** Bug Fix **
- Fixed many crash problems for Windows 2000 users. This fix will most
likely also aid some folks that are not using Windows 2000 that are
having problems.
** Item Changes **
- Velious racial plate helm quests have been added that will allow you
to 'trade in' your existing helms for ones with textures. We have
decided to allow the players (or their characters) to chose whether
they wish to have the new helmet textures or to continue to use helmets
that show no graphics.
- Five and ten charge versions of Potions of the Bone Field have been
added.
- Kilva's Skin of Flame potion has been changed. It no longer has the
same effect as the Kilva's Blistering Flesh potion.
- Removed the tinting from Dark Forge and Resonant armors. Tinting was
never really intended to be on those pieces and, frankly, they look
better without it.
** Miscellaneous Items **
- Reduced the 'bottleneck' for getting Howling Stone keys by increasing
the availability of one of the quest items.
- Erudite guards will now be much less friendly to Kobolds.
- Vendors are once again selling the Coldain Tanner's Kit.
** 'Combine' container changes **
We've made a change to 'combine' containers. In order to prevent people
from accidentally destroying items, all containers with a 'combine'
button will not combine any items that do not form a complete recipe.