
Originally Posted by
lRetros
Good luck with the project, i love the creative ideas that you'll try to make in the emulator but i think is better to have first a very stable and complete Emulator for the RELEASE 26 before of add this new good things, it'd be great if you also tell us about the emulator and CMS features.
Now i'm very busy working with HabboDavinci and studying but if you need to edit some things in the r26 DCR's im expert in shockwave and is possible that one day i could help you, i prefer the r14-18 ones but it doesn't matter.
A screen shot of my Hotel right now (i changed a little bit the interface to make a good mix):
Sure, I could use your help with editing some of the interface. I'll PM you.
Also, snippet:
Code:
int newLevel;
string exp;
exp = dbClient.getString("SELECT herblorexp FROM users WHERE name = '" + _Username + "'");
if (exp = "max")
{
using (DatabaseClient dbClient = Eucalypt.dbManager.GetClient())
dbClient.runQuery("UPDATE users SET herblore = herblore + 1 WHERE name = '" + _Username + "'");
dbClient.runQuery("UPDATE users SET herblorexp = NULL WHERE name = '" + _Username + "'");
newLevel = dbClient.getInt("SELECT herblore FROM users WHERE name = '" + _Username + "'");
sendData("BK" + "Level Up! \r" + "You are now a level " + newLevel + " Herbalist\r" +"You may now: " + newAbility + "");
}
Also a screenshot of the 2nd step of registration, a simple radio form that inputs the selected race into the user's table and changes everything else accordingly: