Changes between Initial Version and Version 1 of Scenario_BuyItem


Ignore:
Timestamp:
02/12/25 14:35:06 (10 days ago)
Author:
181557
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Scenario_BuyItem

    v1 v1  
     1= Buying an Item from a Trader =
     2== Description ==
     3A player purchases an item from an NPC trader.
     4
     5== SQL Example ==
     6{{{
     7INSERT INTO Character_Item (CharacterID, ItemID)
     8SELECT 1, ItemID FROM Trader_Item WHERE TraderID = 1 AND ItemID = 2;
     9}}}