Page 1 of 1
Does Anyone Have A Skill And Stat Seller? i really can't find one
#1
Posted 28 August 2004 - 04:50 AM
can someone help me on getting a skill and stat seller i really need one thank you
#2
Posted 01 September 2004 - 06:44 AM
Do you mean a stats/skills resetter? If so, I have one. Not made by me though, so I don't take any credit.
Edit the numbers for your own liking.
~AznSoldier
Quote
npc "prontera" "Stats Resetter" 1_F_ORIENT_03 170 226 3 5 5
OnClick:
dialog "[Stats Resetter]"
dialog "Hey, want to reset your stats or skills?"
dialog "Resetting your stats or skills costs 10,000z, and to do them both, 20,000z."
wait
choose menu "Stats" "Skills" "Both" "Cancel"
case 1
if v[VAR_MONEY] < 10000
dialog "[Stats Resetter]"
dialog "You need at least 10,000z to reset your stats/skills."
close
return
endif
dialog "[Stats Resetter]"
dialog "One moment please."
dropgold 10000
ResetStat
dialog "[Stats Resetter]"
dialog "Alright, your stats have been reset. Enjoy!!"
close
return
break
case 2
if v[VAR_MONEY] < 10000
dialog "[Stats Resetter]"
dialog "You need at least 10,000z to reset your stats/skills."
close
return
endif
dialog "[Stats Resetter]"
dialog "One moment please."
wait
dropgold 2500
ResetSkill
dialog "[Stats Resetter]"
dialog "Alright, your skills have been reset. Enjoy!!"
close
return
break
case 3
if v[VAR_MONEY] < 20000
dialog "[Stats Resetter]"
dialog "You need at least 20,000z to reset both."
close
return
endif
dialog "[Stat Resetter]"
dialog "One moment please."
wait
dropgold 20000
ResetStat
ResetSkill
dialog "[Stat Resetter]"
dialog "Alright, your stats and skills have been reset. Enjoy!!"
close
return
break
case 4
close
return
break
endchoose
OnClick:
dialog "[Stats Resetter]"
dialog "Hey, want to reset your stats or skills?"
dialog "Resetting your stats or skills costs 10,000z, and to do them both, 20,000z."
wait
choose menu "Stats" "Skills" "Both" "Cancel"
case 1
if v[VAR_MONEY] < 10000
dialog "[Stats Resetter]"
dialog "You need at least 10,000z to reset your stats/skills."
close
return
endif
dialog "[Stats Resetter]"
dialog "One moment please."
dropgold 10000
ResetStat
dialog "[Stats Resetter]"
dialog "Alright, your stats have been reset. Enjoy!!"
close
return
break
case 2
if v[VAR_MONEY] < 10000
dialog "[Stats Resetter]"
dialog "You need at least 10,000z to reset your stats/skills."
close
return
endif
dialog "[Stats Resetter]"
dialog "One moment please."
wait
dropgold 2500
ResetSkill
dialog "[Stats Resetter]"
dialog "Alright, your skills have been reset. Enjoy!!"
close
return
break
case 3
if v[VAR_MONEY] < 20000
dialog "[Stats Resetter]"
dialog "You need at least 20,000z to reset both."
close
return
endif
dialog "[Stat Resetter]"
dialog "One moment please."
wait
dropgold 20000
ResetStat
ResetSkill
dialog "[Stat Resetter]"
dialog "Alright, your stats and skills have been reset. Enjoy!!"
close
return
break
case 4
close
return
break
endchoose
Edit the numbers for your own liking.
~AznSoldier
This post has been edited by AznSoldier: 01 September 2004 - 06:45 AM
#3
Posted 01 September 2004 - 11:21 PM
I'm pretty sure he means seller, the ones that give you skill point and stat points for a price.
#4
Posted 01 September 2004 - 11:24 PM
Oh... Thanks for the clarification. Hmm... I've never heard of a script that "sells" skill points and stats points. Does Aegis even have a script that can do this? I mean, is there an Aegis server that has a script that does this? :socute:
~AznSoldier
~AznSoldier
#5
Posted 02 September 2004 - 12:44 AM
[SIZE=1][font=Times]
Here's the commands for an npc to give away stat points....I think
[*]FOR MORE INFORMATION:
http://forum.asb-sak...showtopic=12669
Quote
New commands of what I know....
readparam(<Type>);
Return value of these info.
Type numbers:
9 - StatusPoint
11 - BaseLevel
12 - SkillPoint
19 - Class( job value, listed in the const.txt)
20 - Zeny
21 - Sex ( 0 for female and 1 for male)
24 - Weight
25 - MaxWeight
55 - JobLevel
and return 0 for other type numbers.
statusup <Type>;
statusup2 <Type>,<num>;
To add attributes point of char.
Type numbers:
13 - STR
14 - AGI
15 - VIT
16 - INT
17 - DEX
18 - LUK
and no effect for other type numbers.
statusup command add one point and reduse needed bonus points.
statusup2 command add several points as script descripted but no bonus points reduced.
readparam(<Type>);
Return value of these info.
Type numbers:
9 - StatusPoint
11 - BaseLevel
12 - SkillPoint
19 - Class( job value, listed in the const.txt)
20 - Zeny
21 - Sex ( 0 for female and 1 for male)
24 - Weight
25 - MaxWeight
55 - JobLevel
and return 0 for other type numbers.
statusup <Type>;
statusup2 <Type>,<num>;
To add attributes point of char.
Type numbers:
13 - STR
14 - AGI
15 - VIT
16 - INT
17 - DEX
18 - LUK
and no effect for other type numbers.
statusup command add one point and reduse needed bonus points.
statusup2 command add several points as script descripted but no bonus points reduced.
Here's the commands for an npc to give away stat points....I think
[*]FOR MORE INFORMATION:
http://forum.asb-sak...showtopic=12669
This post has been edited by Rubber: 02 September 2004 - 12:51 AM
#8
Posted 16 July 2007 - 08:23 AM
MAPNAME.gat, X, Y, D script NPCNAME VID, {
set array @stats [1], bStr, bAgi, bVit, bInt, bDex, bLuk;
set @price, 100000;
set @maxstat, 9998;
set @status, SELECT (“STR”, “Agi”, “Vit”, “Int”, “Dex”, “Luk”);
input @buy;
if (Zeny < (@buy*@price)) {
mes “Sorry, you does not have enough money”;
CLOSE;
}
if (@buy > @maxstat) {
mes “Sorry, more than “+@maxstat+” does not go”;
CLOSE;
}
if ((@stats [@status] +@buy) > @maxstat) {
mes “Sorry, that is too much”;
CLOSE;
}
mes “much fun still:)”;
set Zeny, Zeny-@buy*@price;
statusup2 @stats [@status], @buy;
CLOSE;
}:D :P ;) :hello: :hello: :hello: :notes: :notes: :notes:
I found this Stat Seller in a German Forum here and Translated it [As if Basis]
your own Risk to Use and to Modify it
#9
Posted 16 July 2007 - 01:29 PM
That's eA script, it won't work with Aegis. And you're in Aegis Support...
Share this topic:
Page 1 of 1

Help










