Directory server/trunk/types/spellbook/

Directory Created:
2007-06-07 17:31
Total Files:
1
Deleted Files:
1
Lines of Code:
263

[root]/server/trunk/types/spellbook

Lines of Code

server/trunk/types/spellbook/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 21 (100.0%) 420 (100.0%) 20.0
qal21 2 (9.5%) 221 (52.6%) 110.5
sarumatix 3 (14.3%) 103 (24.5%) 34.3
akirschbaum 5 (23.8%) 59 (14.0%) 11.8
silvernexus 1 (4.8%) 12 (2.9%) 12.0
mwedel 2 (9.5%) 10 (2.4%) 5.0
kbulgrien 3 (14.3%) 10 (2.4%) 3.3
ryo_saeba 2 (9.5%) 2 (0.5%) 1.0
quinet 1 (4.8%) 2 (0.5%) 2.0
anmaster 2 (9.5%) 1 (0.2%) 0.5

Most Recent Commits

silvernexus 2017-08-26 20:23 Rev.: 20505

Tweak apply on spellbook of known spell to identify the spellbook and name the spell in the client message.

12 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+12 -4)
sarumatix 2017-08-15 05:52 Rev.: 20491

This change provides players with a spells msg when they learn the spell. Although this information is available in the spell window of the GTK and Java clients, many new players don't notice this at first. By providing the information straight up, new players can gain an insight into what the spell is doing.

8 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+8)
sarumatix 2017-08-13 05:53 Rev.: 20484

Removed commented out code from spellbook.c relating to player messages relating to literacy and spell skill level checks.

0 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (-18)
sarumatix 2017-08-13 01:37 Rev.: 20483

This change makes the reasons for players being unable to learn spells when reading from a spellbooks much clearer (I hope).
1) replaced "You are unable to decipher the strange symbols." with a variety of messages based on the difference in level between the book and the players literacy.
2) replaced "You need to be level %d in %s to learn this spell." with a variety of messages based on the difference in level between the book and the players relevant spell skill level.
As this is my first commit involving changes to source code I have left the original code in for clarity.

95 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+95 -43)
ryo_saeba 2011-08-13 15:08 Rev.: 14985

Fix crash.

1 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+1)
mwedel 2010-11-19 01:35 Rev.: 14102

Add code to have identified objects merge together with like objects.
identify() modified to return object, which may be merged object.
examine() modified to stop processing once it does a skill ident
on an item, since the pointer is has may now be invalid.
MSW 2010-11-18

2 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+2 -2)
kbulgrien 2010-05-28 01:12 Rev.: 13308

- Remove unused "oldmessage" parameter from draw_ext_info(),
draw_ext_info_format(), ext_info_map(), ext_info_map_except(), and
ext_info_map_except2() functions and calls.

8 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+8 -12)
akirschbaum 2009-06-15 15:22 Rev.: 11892

Whitespace changes.

1 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+1 -1)
akirschbaum 2009-06-12 10:46 Rev.: 11817

Rename most functions in object.c to object_xxx().

2 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+2 -2)
akirschbaum 2009-02-03 12:34 Rev.: 11325

Encapsulate access to xxx_bonus[] (and similar) arrays with accessor functions get_xxx_bonus().

3 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+3 -1)
akirschbaum 2009-01-24 03:20 Rev.: 11226

Whitespace changes: consistently reformat code.

52 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+52 -58)
quinet 2008-07-20 04:49 Rev.: 9584

Automatic style fix: replace "foo* bar" by "foo *bar", remove extra spaces inside parentheses, etc.

2 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+2 -2)
anmaster 2008-06-01 11:40 Rev.: 9198

Set svn:eol-style to native on *.c and *.h files that were missing it.

1 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+1)
anmaster 2008-05-25 05:03 Rev.: 9151

Removed unused .cvsignore files, after all we use SVN since a long time.

0 lines of code changed in 1 file:

  • server/trunk/types/spellbook: .cvsignore (del)
kbulgrien 2008-01-26 01:44 Rev.: 8278

.cvsignore files fixed in types subdirectories and svn:ignore re-set.

1 lines of code changed in 1 file:

  • server/trunk/types/spellbook: .cvsignore (+1)
kbulgrien 2008-01-26 01:39 Rev.: 8277

.cvsignore files created in types subdirectories and svn:ignore set.

1 lines of code changed in 1 file:

  • server/trunk/types/spellbook: .cvsignore (new 1)
ryo_saeba 2007-12-16 06:03 Rev.: 7926

New sound support. Check doc/Developers/sound.

1 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+1 -1)
mwedel 2007-07-17 02:13 Rev.: 6791

No functional changes - various cleanups to reduce number of compiler warnings
when compiled with -Wall - makes it easier to catch real errors. Most things
changed/fixed are missing returns in non void functions, missing includes,
declared but unused variables, not escaping #include sproto in CEXTRACT
checks. MSW 2007-07-16

8 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+8 -8)
akirschbaum 2007-06-27 15:07 Rev.: 6717

Remove trailing whitespace.

1 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+1 -1)
qal21 2007-06-08 07:57 Rev.: 6429

Use METHOD_OK instead of METHOD_ERROR when a non-player applies a skillscroll or spellbook.

2 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (+2 -2)
qal21 2007-06-07 17:31 Rev.: 6428

Refactor apply for skillscrolls and spellbooks.

219 lines of code changed in 1 file:

  • server/trunk/types/spellbook: spellbook.c (new 219)
Generated by StatSVN 0.7.0