Jump to content
  • 0

Sell at Gm shop


DonLoRenTzZo

Question

hey guys....

 

 

I have some kinda bug...

 

I mean ppl buy one item from gm shop with 1kk and they can sell them with 2-3-4 kk at the same npc...how can i resolve this?

 

Plz need help

Link to comment
Share on other sites

Recommended Posts

  • 0

hey guys....

 

 

I have some kinda bug...

 

I mean ppl buy one item from gm shop with 1kk and they can sell them with 2-3-4 kk at the same npc...how can i resolve this?

 

Plz need help

 

Check your items from database, at armor/weapon/etcitem, there should a column named "price".

Or you can ignore this column from java, by setting it to 0 adena for each item.

Link to comment
Share on other sites

  • 0

Can you tell me eaxctlly the java file?

 

Plz..i'm kinda noob in this?

 

plz

 

RequestSellItem.java

 

Find

 

int price = item.getReferencePrice() / 2;

 

and change it to

 

int price = 0;

Link to comment
Share on other sites

  • 0

you can put a sql script on your db that sells everything for 0 adena

 

~>

 

UPDATE `armor` SET price=0 where price > 1;
UPDATE `etcitem` SET price=0 where price > 1;
UPDATE `weapon` SET price=0 where price > 1;

 

or only etcitems sell for 0 adena

UPDATE `etcitem` SET price=0 where price > 1;

 

Link to comment
Share on other sites

  • 0

you can put a sql script on your db that sells everything for 0 adena or only etcitems

 

~>

 

UPDATE `armor` SET price=0 where price > 1;
UPDATE `etcitem` SET price=0 where price > 1;
UPDATE `weapon` SET price=0 where price > 1;

 

He is a beginner, if he adds custom items, he must do this again.

Using Java is more flexible.

Link to comment
Share on other sites

  • 0

He is a beginner, if he adds custom items, he have to do it again.

Using Java is more flexible.

true if he knows how to modify java files its preferable.

Link to comment
Share on other sites

  • 0

Ok, tell me what files from java i need to modify.... path?

 

And what to set there...tnx

 

RequestSellItem.java

 

Find

 

int price = item.getReferencePrice() / 2;

 

and change it to

 

int price = 0;

Link to comment
Share on other sites

  • 0

The actual sollution though is to just change the sell Price of item from db as trance said.

 

If you change all items' sellprice to 0,be sure that it won't fack up server's economy system whatever how it is since i saw your server is up & running already.

Link to comment
Share on other sites

  • 0

But insted of 0 from this

 

int price = 0;

 

can i put for exemple 1000000 ? i mean 1kk? for all items? so i dont -beep- the server economy?

 

And i dont have that file RequestSell  etc... i searched and the i used Search function from windows...and still cant fiind'it..

Link to comment
Share on other sites

  • 0

But insted of 0 from this

 

int price = 0;

 

can i put for exemple 1000000 ? i mean 1kk? for all items? so i dont -beep- the server economy?

 

And i dont have that file RequestSell  etc... i searched and the i used Search function from windows...and still cant fiind'it..

 

If you change this, all items will have the same price, potions/armors and so on. So no, it's a bad idea. The best solution is to make it 0.

Link to comment
Share on other sites

  • 0

can i put for exemple 1000000 ? i mean 1kk? for all items? so i dont -beep- the server economy?

 

And i dont have that file RequestSell  etc... i searched and the i used Search function from windows...and still cant fiind'it..

 

if your server is  a high drop server yes you can do it and "stable" your shop's multisell. If not there is no reason to do that.

Link to comment
Share on other sites

  • 0

Tnx Guys,

 

I have resolved this...

 

One more question so i dont start another topic...

 

My currency on the server byside adena si golden apiga...but i can't trade them....i know the id is 9143 but i really can find'it in database....somebody know maybe the table?

 

tnx

 

And Tяαnce can you pm me...? because i can't

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...