Argila RPI Engine - Latest News

Latest News

February 12, 2007

Yes a long time, but I have been busy. I am currently assistant coder on a very large game, and it does take a lot of my time. I have tried to make Lua as pain free as possible, but the problem now lies in system code. 3 people were given advanced versions and 1 of them got it to work from the start, so it is possible. All you need to do is resolve the locations of the files for the linking in the makefile, and you'll be all set. Feel free to register at the forum, and see what other users are coming up with. New registration must be approved now, to twart spambots, but that usually takes less than 5 days. See the Downloads page for details.

September 1, 2006

Argila 1-03 is now available. Check out the >Downloads page.

August 24, 2006

Argila RPI now has a Forum . We are still tweaking the look of it, but feel free to register and take a look around. This will be the best place to talk about Argila, report bugs, learn from others who are using it, and make suggestion on future enhancments. small Pots

August 18, 2006

You wield a hat.

This error was recently discovered and reflects similar problems with wearing items. If you enter wear item then the location it is worn is the last or bottom-most location of the possibilities. This is not usually a problem as users should be able to enter wear item location. However, an error exists that may not allow the item to be worn anywhere, or will give you a message that the item cannot be worn in a completely different location.

>wear skirt body

>You cannot wear a skirt on your shoulders.

The error exists in one place, the definition of the locations struct in constants.c. There are currently multiple lines for the same location, and the location for about is missing. You will need to remove the extra lines, and add in the about location

What it is now What it should be
const char *locations [] = {
"hand", // 0
"hand",
"hands",
"head",
"hair",
"ears", // 5
"eyes",
"face",
"mouth",
"throat",
"neck", // 10
"neck",
"body",
"body",
"body",
"body", // 15
"body",
"body",
"back",
"shoulder",
"shoulder", // 20
"arms",
"wrist",
"wrist",
"hands",
"finger", // 25
"finger",
"waist",
"belt",
"belt",
"legs", // 30
"legs",
"legs",
"feet",
"feet",
"hand", // shield 35
"eyes", // blindfold
"\n" // MAX_WEAR = 36
};
const char *locations [] = {
"head",
"hair",
"ears",
"eyes",
"face",
"mouth",
"throat",
"neck",
"body",
"about",
"back",
"shoulder",
"arms",
"wrist",
"hands",
"finger",
"waist",
"belt",
"legs",
"feet",
"hand", // shield
"eyes", // blindfold
"\n"
};
Designed by Auroness 2006