The following warnings occurred:
Warning [2] Use of undefined constant SAPI_NAME - assumed 'SAPI_NAME' (this will throw an Error in a future version of PHP) - Line: 3388 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3388 errorHandler->error
/showthread.php 116 build_archive_link
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/inc/functions.php 3324 build_forum_breadcrumb
/showthread.php 195 build_forum_breadcrumb
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/showthread.php 195 build_forum_breadcrumb






Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Weapon decay
Author Message
Lestat9
Apprentice
*

Posts: 6
Likes Given: 0
Likes Received: 0 in 0 posts
Joined: May 2013
Reputation: 0



Post: #1
Weapon decay
I want to make it so a weapon has a certain amount of uses before it breaks or stops working. How would I do that using the black staff as an example? Thx

For example it breaks or disappears after 1000 swings.

[ITEMDEF 0df0]
//Black Staff
//Using fencing type below
DEFNAME=i_staff_black
TYPE=T_WEAPON_MACE_STAFF
FLIP=1
DAM=12,14
SPEED=37
SKILL=MaceFighting
REQSTR=35
TWOHANDS=Y
WEIGHT=4
DUPELIST=0df1
CATEGORY=Provisions - Weapons
SUBSECTION=Staves
DESCRIPTION=Black Staff

ON=@Create
HITPOINTS={50 60}
(This post was last modified: 05-06-2013 02:07 PM by Lestat9.)
05-06-2013 02:06 PM
Find all posts by this user Like Post Quote this message in a reply
RanXerox
Master
**

Posts: 550
Likes Given: 1
Likes Received: 12 in 9 posts
Joined: Dec 2010
Reputation: 19



Post: #2
RE: Weapon decay
Use the @HitTry trigger on the player wielding it...
05-06-2013 02:21 PM
Find all posts by this user Like Post Quote this message in a reply
amonvangrell
Banned

Posts: 337
Likes Given: 17
Likes Received: 32 in 20 posts
Joined: Aug 2012

britannia shard

Post: #3
RE: Weapon decay
I KNOW WHAT HE MEANS, ITS LIKE THE PROP DURABILITY...

P.S SRY MY CAPS, KEYBOARD BROKED... ;/
05-07-2013 04:25 AM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
darksun84
Sir Spamalot
****

Posts: 1,687
Likes Given: 245
Likes Received: 162 in 151 posts
Joined: Mar 2012
Reputation: 35



Post: #4
RE: Weapon decay
something like that in @hittry

PHP Code:
[EVENTS test]
ON=@HitTry

if <weapon> != // weapon == 0 means that you are using fists
    
weapon.hitpoints -= 1
    sysmessage Your weapon lose durability
it has now <hittpoints>
endif 

I didn't test it, so i don't know if it will works Blush:
05-07-2013 04:41 AM
Find all posts by this user Like Post Quote this message in a reply
Rizz
Master
**

Posts: 396
Likes Given: 21
Likes Received: 14 in 9 posts
Joined: Oct 2012
Reputation: 0



Post: #5
RE: Weapon decay
ON=@HitTry fires and continually fires everytime your character is ready to hit someone.
So i would suggest you tu use @hit or @gethit.

Another way is:

PHP Code:
[ITEMDEF 0df0]
//Black Staff
//Using fencing type below
DEFNAME=i_staff_black
TYPE
=T_WEAPON_MACE_STAFF
FLIP
=1
DAM
=12,14
SPEED
=37
SKILL
=MaceFighting
REQSTR
=35
TWOHANDS
=Y
WEIGHT
=4
DUPELIST
=0df1
CATEGORY
=Provisions Weapons
SUBSECTION
=Staves
DESCRIPTION
=Black Staff

ON
=@Create
HITPOINTS
=1000

ON
=@Damage
IF (<HITPOINTS> > 1)
     
HITPOINTS -= 1
ELSE
    
say game over
    remove
ENDIF 
(This post was last modified: 05-07-2013 11:44 PM by Rizz.)
05-07-2013 11:41 PM
Find all posts by this user Like Post Quote this message in a reply
Alaric
Journeyman
*

Posts: 227
Likes Given: 7
Likes Received: 9 in 4 posts
Joined: Oct 2012
Reputation: 7



Post: #6
RE: Weapon decay
What Rizz suggests is better, I think. I wated to post something similar myself...

1, I might not use hitpoints but tag. Durability of a weapon affects its damage. Or set maxhits to 1 (it won't affect damage and won't be repairable).
2, Use return 1 in on=@damage.
(This post was last modified: 05-08-2013 08:29 AM by Alaric.)
05-08-2013 08:25 AM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)