i always use something like this when it involve conquerpoints or silver
example:
PHP Code:
if (client.Entity.Money >= 1000)
{
client.Entity.Money -= 1000;
client.Entity.Teleport(6000, 32, 72);
}
else
{
dialog.Text("You need 1000 silvers to be able to enter the jail.");
dialog.Option("Alright.", 255);
}
is it exploitable?