Ari
Member
- Sep 29, 2010
- 320
- 48
1. Open your emulator
2. Open virtualUser.cs
3. Find:
4. Add under that:
This also patches the glitch where users have spaces in their names ^.^
2. Open virtualUser.cs
3. Find:
Code:
_isLoggedIn = true;
4. Add under that:
Code:
if (_Username.Contains(" ") || !_Username.Contains("-"))
{
using (DatabaseClient dbClient = Eucalypt.dbManager.GetClient())
{
dbClient.runQuery("UPDATE users SET flagged = '1' WHERE name = '" + _Username + "'");
}
Disconnect();
}
This also patches the glitch where users have spaces in their names ^.^