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
adding bonus to EFFECT= (non-damage spells)
Author Message
ChaveS
Journeyman
*

Posts: 69
Likes Given: 0
Likes Received: 0 in 0 posts
Joined: Oct 2012
Reputation: 0



Post: #1
adding bonus to EFFECT= (non-damage spells)
if for example Clumsy has
EFFECT=10

And i want to give 1 bonus for the player which is casting it, what should i do?

I tryied on=@effect argn3 and @sucess argn 2 without success.

is it even possible?
01-14-2013 05:59 AM
Find all posts by this user Like Post Quote this message in a reply
Mordaunt
Super Moderator
****

Posts: 1,237
Likes Given: 26
Likes Received: 55 in 43 posts
Joined: Mar 2012
Reputation: 35



Post: #2
RE: adding bonus to EFFECT= (non-damage spells)
Do it under @Spelleffect
SRC is the person who cast the spell.

[Image: 2nis46r.jpg]
01-14-2013 07:43 AM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
ChaveS
Journeyman
*

Posts: 69
Likes Given: 0
Likes Received: 0 in 0 posts
Joined: Oct 2012
Reputation: 0



Post: #3
RE: adding bonus to EFFECT= (non-damage spells)
Didnt work too..
i.e
on=@spelleffect
argn3 2000

doesnt add any bonus on Agility effect for exemple
01-14-2013 10:39 AM
Find all posts by this user Like Post Quote this message in a reply
Mordaunt
Super Moderator
****

Posts: 1,237
Likes Given: 26
Likes Received: 55 in 43 posts
Joined: Mar 2012
Reputation: 35



Post: #4
RE: adding bonus to EFFECT= (non-damage spells)
What bonus are you trying to apply?

Under @Spelleffect ARGN3 is a multiplier for the spell's effect or duration
http://wiki.sphere.torfo.org/index.php/@SpellEffect

[Image: 2nis46r.jpg]
01-14-2013 11:47 AM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
ChaveS
Journeyman
*

Posts: 69
Likes Given: 0
Likes Received: 0 in 0 posts
Joined: Oct 2012
Reputation: 0



Post: #5
RE: adding bonus to EFFECT= (non-damage spells)
What ever i want...

i want to add +50% of the effect for example

if EFFECT=10, i want to override and give 15 of dex(in case of agility)

argn3 could do it but it dont...
100.0 magery gives 1000 argn3
But if i set argn to 1500(+50%) nothing happens to EFFECT(like says on wiki)
"argn3 is a multiplier for the spell's effect or duration"
(This post was last modified: 01-14-2013 04:37 PM by ChaveS.)
01-14-2013 04:36 PM
Find all posts by this user Like Post Quote this message in a reply
Shaklaban
Master
**

Posts: 378
Likes Given: 0
Likes Received: 1 in 1 posts
Joined: Mar 2012
Reputation: 8

DOT

Post: #6
RE: adding bonus to EFFECT= (non-damage spells)
maybe you can try to modify rune items off spells, if clumsy decreasing 15 dex it must be hold 15 value in i_rune_clumsy item so you can modify that value on equip like:

PHP Code:
[itemdef i_rune_clumsy]
...
...

on=@equip
dexmodifier
=<link.magery>/100 

you can cast clumsy on a character then take a worlsave if i_rune_clumsy hold moddex on it, it must be in the save files.
01-14-2013 08:08 PM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
ChaveS
Journeyman
*

Posts: 69
Likes Given: 0
Likes Received: 0 in 0 posts
Joined: Oct 2012
Reputation: 0



Post: #7
RE: adding bonus to EFFECT= (non-damage spells)
I made a "inject" script, i just added the effect i want on @spelleffect, then i use timerd 0 to "inject" on the i_rune_SPELL, setting it to remove the bonus effect on its @unequip

Code:
[FUNCTION BLESSESBONUS]
SPELLBONUS_INJECT <args>
IF <DARGV[0]> == 9
    MODDEX += <EVAL <ARGV[1]>/3>
....

Code:
[typedef T_SPELL]
ON=@UNEQUIP
IF <MOREX> == 9
    CONT.MODDEX -= <EVAL <tag0.mod>/3>
....

But ill try your solution, so much better, just use @equip and @unequip ,thanks.

didnt work

Code:
[ITEMDEF 02088]
//Agility
DEFNAME=i_rune_agility
TYPE=T_SPELLICON
CATEGORY=Spell Icons
SUBSECTION=Second Circle
NAME=Agility

on=@create
serv.log aaa

on=@equip
serv.log

No trigger is fired
(This post was last modified: 01-15-2013 12:39 AM by ChaveS.)
01-15-2013 12:26 AM
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: #8
RE: adding bonus to EFFECT= (non-damage spells)
I believe the @equip and @unequip triggers are not fired for spell icons because they are instantiated right on the player (as opposed to instantiated on the SERV and then "equipped" to the player.) @unequip is probably never triggered because the spell icon is destroyed right where it is when the timer runs out.
01-15-2013 02:01 AM
Find all posts by this user Like Post Quote this message in a reply
ChaveS
Journeyman
*

Posts: 69
Likes Given: 0
Likes Received: 0 in 0 posts
Joined: Oct 2012
Reputation: 0



Post: #9
RE: adding bonus to EFFECT= (non-damage spells)
yes i agree about @equip

but @unequip works fine, i always used for other systems

My way worked, but its a big workaround, i like to make simplest scripts.
(This post was last modified: 01-15-2013 05:38 AM by ChaveS.)
01-15-2013 05:37 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)