Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Create another type of arrow
Author Message
victorstelzer
Journeyman
*

Posts: 80
Likes Given: 0
Likes Received: 0 in 0 posts
Joined: Jun 2012
Reputation: 0



Post: #1
Create another type of arrow
Its someone help me create another type of arrow
Does not work that way here

[ITEMDEF i_arrow_ice]
//Arrow
DEFNAME=i_arrow
NAME=arrow%s
TEVENTS=t_showprops
TYPE=t_weapon_ARROW
FLIP=1
RESOURCES=1 i_arrow_shaft, 1 i_feather
REPLICATE=1
SKILLMAKE=1.0 SKILL_BOWCRAFT
WEIGHT=0.1
CATEGORY=Items by Professions
SUBSECTION=Archers/Bowyers
DESCRIPTION=Arrow
DUPELIST=0f40,0f41,0f42
VALUE=5
07-03-2012 10:31 AM
Find all posts by this user Like Post Quote this message in a reply
Extreme
Grandmaster Poster
***

Posts: 1,140
Likes Given: 217
Likes Received: 89 in 76 posts
Joined: May 2012
Reputation: 20

SphereCommunity

Post: #2
RE: Create another type of arrow
Troca o 'DEFNAME=i_arrow' por 'ID=i_arrow'

STEPS BEFORE CREATE A THREAD
- Check the revisions log;
- Use the search button and use the keywords of your problem;
- Check the WIKI;
- Create a thread.
07-03-2012 11:06 AM
Find all posts by this user Like Post Quote this message in a reply
victorstelzer
Journeyman
*

Posts: 80
Likes Given: 0
Likes Received: 0 in 0 posts
Joined: Jun 2012
Reputation: 0



Post: #3
RE: Create another type of arrow
Como eu faço pra incrementar na flecha um +5 de dano ??


How do I do to improve the arrow a +5 damage?
(This post was last modified: 07-03-2012 11:36 AM by victorstelzer.)
07-03-2012 11:19 AM
Find all posts by this user Like Post Quote this message in a reply
Skul
Master
**

Posts: 413
Likes Given: 0
Likes Received: 19 in 15 posts
Joined: Jun 2012
Reputation: 9



Post: #4
RE: Create another type of arrow
TAG.OVERRIDE.ARROWTYPE

"I ask a question to the answer I already know."

Marchadium :: http://www.marchadium.ca/ :: Join us!
07-03-2012 12:07 PM
Visit this user's website 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: #5
RE: Create another type of arrow
If you make a bow that only shoots that sort of arrow, then you can just increase the minimum and maximum DAM amount on the bow...

If you allow a bow to shoot different kinds of arrows, I don't think there is a foolproof way of detecting what sort of arrow a bow just finished shooting. The likely solution requires a combination of triggers being installed on all the players and creatures.
07-03-2012 03:04 PM
Find all posts by this user Like Post Quote this message in a reply
darksun84
Sir Spamalot
****

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



Post: #6
RE: Create another type of arrow
i found this in the revisions :

LOCAL.Arrow storing an UID of used arrow while archery in @Hit.
07-03-2012 05:08 PM
Find all posts by this user Like Post Quote this message in a reply
Skul
Master
**

Posts: 413
Likes Given: 0
Likes Received: 19 in 15 posts
Joined: Jun 2012
Reputation: 9



Post: #7
RE: Create another type of arrow
also stores in @hittry so you can change the tag.override.arrowtype, right?

My bows are multi-functional to all my different arrows, also by @dclick the arrow you can set it as your main priority.

"I ask a question to the answer I already know."

Marchadium :: http://www.marchadium.ca/ :: Join us!
07-04-2012 01:48 AM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Anarch Cassius
Master
**

Posts: 273
Likes Given: 19
Likes Received: 10 in 9 posts
Joined: Mar 2012
Reputation: 2



Post: #8
RE: Create another type of arrow
Yes, Skul has the right idea. You just need to modify all arrows and everything else is fine.

Each arrow type should produce a cursor when double-clicked. The cursor changes the ammo type of the bow, removes old ammo events, and selected adds any needed events.

The basic arrows need to be changed to remove the ammo events only and remove the override tags. Then you can use arrows with all kinds of bows. Just keep the list of possible ammo events updated.
07-04-2012 05:31 AM
Find all posts by this user Like Post Quote this message in a reply
Skul
Master
**

Posts: 413
Likes Given: 0
Likes Received: 19 in 15 posts
Joined: Jun 2012
Reputation: 9



Post: #9
RE: Create another type of arrow
Yes that was very similar to the idea I had in mind Anarch. I was thinking this can be done in a single player event, and afterwards the scripter can add their own arrows. The code should look something like this:
Code:
on=@itemdclick
if (<act.type>==t_weapon_arrow)
tag.ammotype_arrow=<act.baseid>
sysmessage Arrow Type Changed To: <act.name>
return 1
elseif (<act.type>==t_weapon_bolt)
tag.ammotype_bolt=<act.baseid>
sysmessage Bolt Type Changed To: <act.name>
return 1
endif

on=@hittry
if (<act.type>==t_weapon_bow)
if !(strmatch(<tag0.ammotype_arrow>,0))
  if (<rescount <tag0.ammotype_arrow>>)
   act.tag.override.ammotype=<tag0.ammotype_arrow>
  else
   act.tag.override.ammotype=
  endif
endif
elseif (<act.type>==t_weapon_xbow
if !(strmatch(<tag0.ammotype_bolt>,0))
  if (<rescount <tag0.ammotype_bolt>>)
   act.tag.override.ammotype=<tag0.ammotype_bolt>
  else
   act.tag.override.ammotype=
  endif
endif
endif

"I ask a question to the answer I already know."

Marchadium :: http://www.marchadium.ca/ :: Join us!
07-04-2012 06:52 PM
Visit this user's website 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)