vender item index goes wrong

This place is for Closed bug reports only. NOT for asking help!

Moderators: Moderators, Developers

Message
Author
xxstreme
Human
Human
Posts: 20
Joined: 03 Dec 2008, 15:46
Noob?: Yes

vender item index goes wrong

#1 Post by xxstreme »

-------------------------- Vender: edit" (3) ---------------------------
# Name Type Amount Price
16 Old Blue Box Usable Special 51 37,500z
16 Wraith Card Card 3 10,000,000z
16 Evil Druid Card Card 3 7,000,000z
16 Cookie Card Card 3 7,000,000z
16 Myst Case Card Card 2 5,000,000z
16 Coco Card Card 10 300,000z
17 Pecopeco Egg Card Card 2 10,000,000z
17 Andre Egg Card Card 1 200,000z
17 Hode Card Card 10 200,000z
-------------------------------------------------------------------------------

look at items index just same all 16 and 17
how to repair it?

------------------------- Vender: Unknown #858796342 --------------------------
# Name Type Amount Price
24 Old Blue Box Usable Special 90 35,500z
25 Evil Druid Card Card 5 12,000,000z
25 Elunium Event 8 55,000z
25 Myst Case Card Card 5 3,000,000z
25 Pecopeco Egg Card Card 10 5,000,000z
-------------------------------------------------------------------------------

all same 25

xxstreme
Human
Human
Posts: 20
Joined: 03 Dec 2008, 15:46
Noob?: Yes

Re: vender item index goes wrong

#2 Post by xxstreme »

ow nothing wrong with the index
just wrong with text format

i test to fix text format to display 3 digit of number

at src\Network\Receive\ServerType0.pm
on sub vender_items_list {

original
message TF("%s\n" .
"#(2 space) Name Type Amount Price\n",

message(swrite(
"@< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<<<<<<<< @>>>>> @>>>>>>>>>z",

edit"
message TF("%s\n" .
"#(3 space) Name(remove 1 space) Type Amount Price\n",

message(swrite(
"@<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<<<<<<<< @>>>>> @>>>>>>>>>z",

now items index shown 3 digit

-------------------------- Vender: edit" (3) ---------------------------
# Name Type Amount Price
173 Old Blue Box Usable Special 25 37,500z
174 Wraith Card Card 3 10,000,000z
175 Evil Druid Card Card 3 7,000,000z
176 Cookie Card Card 3 7,000,000z
177 Myst Case Card Card 2 5,000,000z
178 Coco Card Card 10 300,000z
179 Pecopeco Egg Card Card 2 10,000,000z
180 Andre Egg Card Card 1 200,000z
181 Hode Card Card 10 200,000z
-------------------------------------------------------------------------------


Post Reply