问题描述
我目前正在使用MysqL数据库构建一个discord.py游戏机器人/ MMORPG机器人,以存储所有用户信息和东西。我打算创建一个库存系统,但是遇到了一个问题。
我的计划是每次玩家获得一个新物品时都会创建/插入一行。例如,假设一个玩家击败了一个大老板,而他获得了一个新物品。 我要插入一个新行,其中包含他唯一的不和谐用户ID,然后是他拥有的商品的ID。。但是,我遇到了一个问题。 如何限制可以创建的行/插槽/库存空间的数量?
我希望20个值是玩家可以在其库存/数据库中存储的默认最大物品数量,但是我不知道该怎么做,因为我对数据库结构还不太熟悉。有人可以帮我吗?我真的很感激。
示例代码:
player_info (Table for User Info)
userid
items (Table for Item Attributes)
itemid (id of item)
item_name (name of the item)
item_stats (item attack damage / defense)
player_inv (Table to sync up item attributes and userid)
player_id (id of player who has item)
itemid (id of the item the player has)
所以我想在player_inv表中插入具有playerid和itemid的行。我是从stackexchage.com获得这个想法的:>
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)