Purchase Point

09/12/2018 09:55 TheRealCataracts#1
I haven’t seen this posted anywhere else on the forum, and I know it’s probably something simple that I’m missing, so I’ll keep it short and to the point.

I’m trying to add a purchase point npc (using job type 51) but when I add the items to the shop, the purchase point requirement doesn’t show up on the items.
Even when I add it to the “Purchase Point” column in itemweapon.

Is there another value in itemweapon I need to change to make the purchase point requirement show up in the shop? Or is there another file I should be adding the indexes to?

Any help is appreciated.

Thanks guys.
09/12/2018 11:12 thirdeye42#2
You need to change the description of an item to the corresponding code in stringtable_item, you can add <PPOINT> to the existing code, or create your own.


data\share\item\itemaccessory.csv

793 being the description
Code:
64093,Severes Gold Neck,5,2,0,0,793,..........
data\script\string\stringtable_item.txt

Code:
code 793
{
<NAME>

<BUYVALUE><SELLVALUE>
<REQGRADE><REQLV>
<PPOINT>
<color=bebbff><OPTION></color>

}
09/12/2018 17:38 TheRealCataracts#3
Quote:
Originally Posted by thirdeye42 View Post
You need to change the description of an item to the corresponding code in stringtable_item, you can add <PPOINT> to the existing code, or create your own.


data\share\item\itemaccessory.csv

793 being the description
Code:
64093,Severes Gold Neck,5,2,0,0,793,..........
data\script\string\stringtable_item.txt

Code:
code 793
{
<NAME>

<BUYVALUE><SELLVALUE>
<REQGRADE><REQLV>
<PPOINT>
<color=bebbff><OPTION></color>

}
Figured it would be something simple like this...thanks man.
Didn’t even think about that.