03-02-2009, 07:26 PM
Ok I realise what the issue is, and I have tried many ways to fix it, but nothing has worked so far. I am making a code for npc's to open shops when there clicked, it works, saves loads and the npc's still move, but I get
RTE 400
Form already displayed; can't show modally
it's issue is in the trade packet,
it highlights this part in packet "trade" client side
I changed it to
and it worked, but it had a issue with the actual trading code.
Everytime I try to buy something it tells me my inventory is full even when it's empty, any suggestions?
RTE 400
Form already displayed; can't show modally
it's issue is in the trade packet,
it highlights this part in packet "trade" client side
Code:
frmTrade.Show vbModal
I changed it to
Code:
frmTrade.Show VBModeless
Everytime I try to buy something it tells me my inventory is full even when it's empty, any suggestions?