doommap Posted November 23, 2012 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 30 Reputation: 0 Joined: 11/21/12 Last Seen: April 21, 2021 Share Posted November 23, 2012 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 Quote Link to comment Share on other sites More sharing options...
GM Takumirai Posted November 23, 2012 Group: Members Topic Count: 69 Topics Per Day: 0.01 Content Count: 592 Reputation: 31 Joined: 11/14/11 Last Seen: July 29, 2015 Share Posted November 23, 2012 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.. Quote Link to comment Share on other sites More sharing options...
doommap Posted November 23, 2012 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 30 Reputation: 0 Joined: 11/21/12 Last Seen: April 21, 2021 Author Share Posted November 23, 2012 yeah, but i want the effect to have an instacast Quote Link to comment Share on other sites More sharing options...
GM Takumirai Posted November 23, 2012 Group: Members Topic Count: 69 Topics Per Day: 0.01 Content Count: 592 Reputation: 31 Joined: 11/14/11 Last Seen: July 29, 2015 Share Posted November 23, 2012 i think this is the link of it.. http://www.eathena.ws/board/index.php?showtopic=246304 Quote Link to comment Share on other sites More sharing options...
doommap Posted November 23, 2012 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 30 Reputation: 0 Joined: 11/21/12 Last Seen: April 21, 2021 Author Share Posted November 23, 2012 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 Quote Link to comment Share on other sites More sharing options...
bachvugx Posted November 23, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 8 Reputation: 1 Joined: 02/20/12 Last Seen: August 3, 2022 Share Posted November 23, 2012 id,Weapon,Weapon,4,20,,3500,200,,1,1,0x000xxx,2,2,34,4,55,1,3,{ if(readparam(bDex) == 140) bonus bCastrate,-100; },{},{} Quote Link to comment Share on other sites More sharing options...
doommap Posted November 23, 2012 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 30 Reputation: 0 Joined: 11/21/12 Last Seen: April 21, 2021 Author Share Posted November 23, 2012 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 Quote Link to comment Share on other sites More sharing options...
bachvugx Posted November 23, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 8 Reputation: 1 Joined: 02/20/12 Last Seen: August 3, 2022 Share Posted November 23, 2012 bonus bCastrate to bonus bVariableCastrate Quote Link to comment Share on other sites More sharing options...
doommap Posted November 23, 2012 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 30 Reputation: 0 Joined: 11/21/12 Last Seen: April 21, 2021 Author Share Posted November 23, 2012 bonus bCastrate to bonus bVariableCastrate still not working btw my renewal cast rate is enabled Quote Link to comment Share on other sites More sharing options...
malufett Posted November 23, 2012 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 554 Reputation: 70 Joined: 04/04/12 Last Seen: November 8, 2013 Share Posted November 23, 2012 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; },{},{} Quote Link to comment Share on other sites More sharing options...
doommap Posted November 24, 2012 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 30 Reputation: 0 Joined: 11/21/12 Last Seen: April 21, 2021 Author Share Posted November 24, 2012 (edited) 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; },{},{} bonus bVariableCastrate,-100;bonus bFixedCastrate,-100; < this works fine but!... when i add this if(readparam(bDex) == 140) << it doesn't work Edited November 24, 2012 by doommap Quote Link to comment Share on other sites More sharing options...
Euphy Posted November 24, 2012 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted November 24, 2012 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. Quote Link to comment Share on other sites More sharing options...
doommap Posted November 24, 2012 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 30 Reputation: 0 Joined: 11/21/12 Last Seen: April 21, 2021 Author Share Posted November 24, 2012 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? Quote Link to comment Share on other sites More sharing options...
GM Takumirai Posted November 24, 2012 Group: Members Topic Count: 69 Topics Per Day: 0.01 Content Count: 592 Reputation: 31 Joined: 11/14/11 Last Seen: July 29, 2015 Share Posted November 24, 2012 Its depend on your server configuration of max dex to cast its inside your svn/conf/battle Quote Link to comment Share on other sites More sharing options...
Euphy Posted November 24, 2012 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted November 24, 2012 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. Quote Link to comment Share on other sites More sharing options...
doommap Posted November 24, 2012 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 30 Reputation: 0 Joined: 11/21/12 Last Seen: April 21, 2021 Author Share Posted November 24, 2012 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 Quote Link to comment Share on other sites More sharing options...
Euphy Posted November 24, 2012 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted November 24, 2012 Here's the source mod to do it: http://www.eathena.ws/board/index.php?showtopic=271354 Quote Link to comment Share on other sites More sharing options...
doommap Posted November 24, 2012 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 30 Reputation: 0 Joined: 11/21/12 Last Seen: April 21, 2021 Author Share Posted November 24, 2012 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 Quote Link to comment Share on other sites More sharing options...
Question
doommap
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.