Critica Posted March 9, 2012 Group: Members Topic Count: 82 Topics Per Day: 0.02 Content Count: 223 Reputation: 4 Joined: 02/23/12 Last Seen: March 28, 2018 Share Posted March 9, 2012 I want to make an item bonus that decreases its effect every jobs ex Helm +20 to all stats. for novice its +20 1st class it becomes +15 2nd class +10 trns class +5 3rd -no more bonus.. is this possible on bonus item?? tnxxxx pls help Quote Link to comment Share on other sites More sharing options...
simplemhan Posted March 9, 2012 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 308 Reputation: 3 Joined: 12/18/11 Last Seen: March 4, 2014 Share Posted March 9, 2012 i think its possible but i dont know how bcoz im new in scripting. Quote Link to comment Share on other sites More sharing options...
Pneuma Posted March 9, 2012 Group: Members Topic Count: 82 Topics Per Day: 0.02 Content Count: 846 Reputation: 138 Joined: 02/26/14 Last Seen: March 7, 2018 Share Posted March 9, 2012 (edited) If you dont want 3rd jobs to beable to use an item, keep the uh..'upper' mask as "7" like older items 0xFFFFFFFF,7,2, <<<< Keep the items code like that 0xFFFFFFFF,8,2, <<<< For 3rd Jobs only Edited March 9, 2012 by Pneuma Quote Link to comment Share on other sites More sharing options...
Emistry Posted March 10, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: 8 hours ago Share Posted March 10, 2012 you can try like this for the bonus if( Class == 0 ) bonus bAllStats,20; else if( Class > 0 && Class <= 6 ) bonus bAllStats,15; else if( Class > 6 && Class <= 20 ) bonus bAllStats,10; else if( Upper == 1 ) bonus bAllStats,5; else end; Quote Link to comment Share on other sites More sharing options...
Question
Critica
I want to make an item bonus that decreases its effect every jobs
ex Helm +20 to all stats.
for
novice its +20
1st class it becomes +15
2nd class +10
trns class +5
3rd -no more bonus..
is this possible on bonus item?? tnxxxx pls help
Link to comment
Share on other sites
3 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.