Aegis Support Board: Does Anyone Have A Skill And Stat Seller? - Aegis Support Board

Jump to content

ASB News! ASB 5.0 Beta V2 has now been released!. See here for more Info.

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Does Anyone Have A Skill And Stat Seller? i really can't find one

#1 User is offline   ballpen 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 23-July 04

Posted 28 August 2004 - 04:50 AM

can someone help me on getting a skill and stat seller i really need one thank you
0

#2 User is offline   AznSoldier 

  • Elite member
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1364
  • Joined: 03-May 03

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.

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


Edit the numbers for your own liking.

~AznSoldier

This post has been edited by AznSoldier: 01 September 2004 - 06:45 AM

0

#3 User is offline   doraemon2000 

  • Member
  • PipPipPip
  • Group: Members
  • Posts: 69
  • Joined: 11-August 03

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.
0

#4 User is offline   AznSoldier 

  • Elite member
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1364
  • Joined: 03-May 03

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
0

#5 User is offline   Rubber 

  • ~*Rawr*~I'm a Tiger ^_^
  • PipPipPipPipPip
  • Group: Members
  • Posts: 348
  • Joined: 17-July 04
  • Location:~Toronto, Ontario

Posted 02 September 2004 - 12:44 AM

[SIZE=1][font=Times]

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.


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

0

#6 User is offline   andz 

  • Falling Away From Me
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2228
  • Joined: 09-April 03
  • Location:Avril's House
  • Interests:Avril Lavigne and Korn

Posted 03 September 2004 - 02:13 PM

No Aegis doesn't support it.. only for Emulators i guess
0

#7 User is offline   EathenaSakarayII 

  • Junior Member
  • PipPip
  • Group: Members
  • Posts: 17
  • Joined: 26-June 07
  • Location:Eathena
  • Interests:Script and Sprite Editting........

Posted 16 July 2007 - 02:29 AM

:D Script does work... there are may errors on it... :P
0

#8 User is offline   EathenaSakarayII 

  • Junior Member
  • PipPip
  • Group: Members
  • Posts: 17
  • Joined: 26-June 07
  • Location:Eathena
  • Interests:Script and Sprite Editting........

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
0

#9 User is offline   Goblin 

  • Junior Member
  • PipPip
  • Group: Members
  • Posts: 16
  • Joined: 10-August 04
  • Location:#czechro

Posted 16 July 2007 - 01:29 PM

That's eA script, it won't work with Aegis. And you're in Aegis Support...
0

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users