hi probley a simple quistion i got this code that works
code:
Display("The player has $%d.", player.InventoryQuantity[iCash.ID]);
the problem is i dont want to display it i want it to appear in a textbox what code would i write
Simple indeed.
TextBox.Text=String.Format("The player has $%d.", player.InventoryQuantity[iCash.ID]);
Untested, but this should work.
perfect mate nice one