Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
WTF with spells in latest builds?
Author Message
WRWR
Journeyman
*

Posts: 212
Likes Given: 30
Likes Received: 1 in 1 posts
Joined: Mar 2012
Reputation: 1



Post: #1
WTF with spells in latest builds?
WTF with spells in latest builds? or maybe its my miss

For example
summon daemon,vortex,elementals,bladespirit after summon creature...
earthquake, meteor swarm, chainlightning not work
(This post was last modified: 09-01-2012 07:45 AM by WRWR.)
09-01-2012 07:45 AM
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: #2
RE: WTF with spells in latest builds?
yup Sad
09-02-2012 12:25 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: #3
RE: WTF with spells in latest builds?
The spellflags changed.. did you checked them?

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.
09-02-2012 12:29 AM
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: #4
RE: WTF with spells in latest builds?
Yes i guess,

The problem with summoning is:
When you summon a creature(even with addnpc) the next time you cast summon daemon/elemental/vortex the previous creature is summoned! If you use them for first, you'll summon a naked bald man with console error :

PHP Code:
22:ERROR:Create Invalid Char 0efa 

Instead, chain lighting and meteor swarm always fizz after target's selection, and with GM OFF your mana will be reduced around 0.

This is what appear, when you use them with GM OFF

PHP Code:
:DEBUG:__ thread (5452__ |  # | _____ function _____________ | ticks passed from previous function start ______
17:19:DEBUG:>>         5452     |  |               CWorld::OnTick | +
17
:19:DEBUG:>>         5452     |  |              CSector::OnTick | +
17
:19:DEBUG:>>         5452     |  |                CChar::OnTick | +<-- exception catch point (below is guessed and could be incorrect!)
17:19:DEBUG:>>         5452     |  |            CChar::Skill_Done | +
17
:19:DEBUG:>>         5452     |  |           CChar::Skill_Stage | +
17
:19:DEBUG:>>         5452     |  |          CChar::Skill_Magery | +
17
:19:DEBUG:>>         5452     |  |        CChar::Spell_CastDone | +
17
:19:DEBUG:>>         5452     |  |         CChar::Spell_CanCast | +
17
:19:DEBUG:>>         5452     |  |         CChar::UpdateStatVal | +
17
:19:DEBUG:>>         5452     |  |        CChar::UpdateManaFlag | +
17
:19:CRITICAL:"Access Violation" (0x45ff3), in CChar::Tick() #1 "timer expired" 

The error continue to be displayed in the console until you don't have enough mana to cast the two spells above(so with mana 100 you'll get it two times in the console), so looks like when the spell is casted, it cast itself again and again!


Earthquake can be fixed by adding SPELLFLAG_AREA to him.
(This post was last modified: 09-02-2012 01:33 AM by darksun84.)
09-02-2012 01:05 AM
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: #5
RE: WTF with spells in latest builds?
I don't understand why spells are heavily modified, all spells already can be overrided by scripts easily.
09-02-2012 01:32 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: 246
Likes Received: 162 in 151 posts
Joined: Mar 2012
Reputation: 35



Post: #6
RE: WTF with spells in latest builds?
It's nice to have the base spells working by default Shock
(This post was last modified: 09-02-2012 01:35 AM by darksun84.)
09-02-2012 01:35 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: #7
RE: WTF with spells in latest builds?
darksun84, use LOCAL.CREATEOBJECT1 to all your summon spells, be sure to use a valid ID. That will solve the little problem with summons. I'm not sure about the 'mass area effects', it appears to be working properly on my shard. Might be something to do with your spellflags.

Also, be sure to add spellflag_damage to any spell that is meant to cause damage (such as meteor swarm, chain lightning, earthquake, flame strike, magic arrow, etc etc) and be sure to keep spellflag_harm on the spells that should be treated as a 'harmful' spell, such as s_curse, s_feeblemind, s_lightning, etc etc.

Also, for SPELLFLAG_AREA add this little event to all your NPCs and players for the meanwhile. (looks to be an internal error)
Code:
[events e_spellflag_area]
on=@spellselect
if ( <serv.spell.<argn1>.flags> & spellflag_area )
  serv.spell.<argn1>.flags |= spellflag_scripted //just the the meantime
endif

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

Marchadium :: http://www.marchadium.ca/ :: Join us!
(This post was last modified: 09-02-2012 05:42 AM by Skul.)
09-02-2012 05:15 AM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Ben
Sphere Developer
*****

Posts: 612
Likes Given: 2
Likes Received: 123 in 70 posts
Joined: Mar 2010
Reputation: 18

SphereCommunity

Post: #8
RE: WTF with spells in latest builds?
That's some interesting info... I have an idea where the problem could be now. Thanks Smile

AxisII's current version: 2.0.4j
AxisII SourceCode on Github
AxisII up to date changelog
09-03-2012 10:24 AM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Ben
Sphere Developer
*****

Posts: 612
Likes Given: 2
Likes Received: 123 in 70 posts
Joined: Mar 2010
Reputation: 18

SphereCommunity

Post: #9
RE: WTF with spells in latest builds?
Build 1533 Should have Summon and Area spells working properly.

AxisII's current version: 2.0.4j
AxisII SourceCode on Github
AxisII up to date changelog
09-05-2012 01:55 PM
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: 246
Likes Received: 162 in 151 posts
Joined: Mar 2012
Reputation: 35



Post: #10
RE: WTF with spells in latest builds?
They look fixed Big Grin , Thank you Ben !
09-06-2012 08:17 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)