Eeh what are u using? WSV GUS SANSAN???
Try to save the food in a ini.
somthing like:
elseif ($2 == !buyfood) {
if ($3 == noodles) {
!writeini -n vcmp.food.ini NOODLES %name yes
vcmp.msg %id You bought noodles.
}
}
elseif ($2 == !mystuff) {
if ($readini(vcmp.food.ini,NOODLES,%name) == yes) {
vcmp.msg %id You got Noodles.
}
else vcmp.msg %id You dont have anything!
}
elseif ($2 == !eat) {
if ($3 == noodles) {
if ($readini(vcmp.food.ini,NOODLES,%name) == yes) {
vcmp.msg %id You eat some noodles.
}
else vcmp.msg %id You dont got any noodles!
}
}
Or something like that, NOTE: Untested