Jump to content
  • 0

item instacast


doommap

Question


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  30
  • Reputation:   0
  • Joined:  11/21/12
  • Last Seen:  

is there a way to make a misc item that has the ability to make trans use insta cast at dex 140? TRANS ONLY btw im using renewal settings on my server

Link to comment
Share on other sites

17 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  592
  • Reputation:   31
  • Joined:  11/14/11
  • Last Seen:  

you mean a misc. item can have a stat?.. i think theres a release in eAthena before it called a charm item.. its in the misc item cattegory but give stats..

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  30
  • Reputation:   0
  • Joined:  11/21/12
  • Last Seen:  

yeah, but i want the effect to have an instacast

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  592
  • Reputation:   31
  • Joined:  11/14/11
  • Last Seen:  

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  30
  • Reputation:   0
  • Joined:  11/21/12
  • Last Seen:  

thank you, but i saw that one already i mean the script i needed is for trans to have insta cast on dex 140, and again im using renewal settings :D

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  8
  • Reputation:   1
  • Joined:  02/20/12
  • Last Seen:  

id,Weapon,Weapon,4,20,,3500,200,,1,1,0x000xxx,2,2,34,4,55,1,3,{ if(readparam(bDex) == 140) bonus bCastrate,-100; },{},{}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  30
  • Reputation:   0
  • Joined:  11/21/12
  • Last Seen:  

id,Weapon,Weapon,4,20,,3500,200,,1,1,0x000xxx,2,2,34,4,55,1,3,{ if(readparam(bDex) == 140) bonus bCastrate,-100; },{},{}

^ not working on renewal settings :(

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  8
  • Reputation:   1
  • Joined:  02/20/12
  • Last Seen:  

bonus bCastrate to bonus bVariableCastrate

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  30
  • Reputation:   0
  • Joined:  11/21/12
  • Last Seen:  

bonus bCastrate to bonus bVariableCastrate

still not working :(

btw my renewal cast rate is enabled

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

don't forget to include this one

bonus bFixedCastrate,-100;

id,Weapon,Weapon,4,20,,3500,200,,1,1,0x000xxx,2,2,34,4,55,1,3,{ if(readparam(bDex) == 140) bonus bVariableCastrate,-100;bonus bFixedCastrate,-100; },{},{}

:meow:

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  30
  • Reputation:   0
  • Joined:  11/21/12
  • Last Seen:  

don't forget to include this one

bonus bFixedCastrate,-100;

id,Weapon,Weapon,4,20,,3500,200,,1,1,0x000xxx,2,2,34,4,55,1,3,{ if(readparam(bDex) == 140) bonus bVariableCastrate,-100;bonus bFixedCastrate,-100; },{},{}

:meow:

bonus bVariableCastrate,-100;bonus bFixedCastrate,-100; < this works fine but!...

when i add this if(readparam(bDex) == 140) << it doesn't work

Edited by doommap
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

That's because you didn't add brackets to the conditional.

if (readparam(bDex) >= 140 && Upper == 1) { bonus bVariableCastrate,-100; bonus bFixedCastrate,-100; }

Upper - 0 if the character is a normal class, 1 if advanced, 2 if baby.
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  30
  • Reputation:   0
  • Joined:  11/21/12
  • Last Seen:  

That's because you didn't add brackets to the conditional.

if (readparam(bDex) >= 140 && Upper == 1) { bonus bVariableCastrate,-100; bonus bFixedCastrate,-100; }

Upper - 0 if the character is a normal class, 1 if advanced, 2 if baby.

it works perfectly!

but i have a follow up question, well were talking about base dex here, is it possible too that the additional dex can do insta cast too?

like Base dex - 130, with a buff of blessing +10 is equals to 140 total Dex is that possible too?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  592
  • Reputation:   31
  • Joined:  11/14/11
  • Last Seen:  

Its depend on your server configuration of max dex to cast its inside your svn/conf/battle

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

Afaik there is no way to retrieve actual stat values via script, just the base values. It shouldn't be too large of a source edit to return actual values, though.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  30
  • Reputation:   0
  • Joined:  11/21/12
  • Last Seen:  

Afaik there is no way to retrieve actual stat values via script, just the base values. It shouldn't be too large of a source edit to return actual values, though.

ok well i have to figure out different methods btw THANKYOU FOR ALL YOUR HELP GUYS

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  30
  • Reputation:   0
  • Joined:  11/21/12
  • Last Seen:  

Here's the source mod to do it: http://www.eathena.w...howtopic=271354

thank you, ive red their thread and it is way too advance for me i saw what annie posted i think thats what i need to edit right? but idk where to inject that src script

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...