Using WSAD to move will be better
Jeason1997
6
Posts
1
Topics
1
Followers
15
Following
A member registered May 14, 2017
Recent community posts
Thank you very much for your reply, what you said made me see new hope :)
By the way, I tried to make a MOD for Axu yesterday, with a few suggestions:
1. Can you add a ID property to the item class? which can make it more scalable, such as replacing old item, or translating item's name.
eg:
{
"ID": "bullet",
"Name" : "Bullet",
"Cost" : 1,
...
}
Then I translate it or replace it with my mod:
{
"ID": "bullet",
"Name" : "子弹", // Chinese language
"Cost" : 999,
...
}
Reference it by it's ID instead of it's name
"Tables" : [
{
"Name" : "Ammo", "Rarity" : 2, "Weight" : 10,
"Items" : [ "bullet" ]
}
]
2.Add scripting support, such as using CodeDom or LUA, scripting support allows modder to do more functional extensions.
That's all, and sorry for my poor English :)