This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
function on_event(EventType event, int data)
{
if (event == eEventLoseInventory) {
int ic = InventoryWindow1.ItemCount;
if ((ic/7)*7 == ic && InventoryWindow1.TopItem == ic) InventoryWindow1.ScrollUp();
}
}
String text = tbInput.Text;
if (text.Length != fcode){
// strorint is 0 then enter the text (not numbers), 1 then the numbers
int i = 0;
while (i < text.Length)
{
if ((strorint==0) && (text.Chars[i] >= '0') && (text.Chars[i] >= '9')){
text = text.Truncate(i);
tbInput.Text = text;
}
else if ((strorint==1) && !((text.Chars[i] >= '0') && (text.Chars[i] >= '9'))){
text = text.Truncate(i);
tbInput.Text = text;
}
i++;
}
fcode=text.Length;
}
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.345 seconds with 16 queries.