What a bad pet you are!
Anyway

You could pause the scripts inside, either manually, or using the script below, but that might just make them queue the events that reveal that you've teleported and just tattle on you anyway once you reactivate them. Not sure.
// stop tracker script... by day oh
// NO GUARANTEES!!!
// usage: /99 stop , /99 go
default
{
on_rez(integer param)
{
llResetScript();
}
state_entry()
{
llListen(99, "", llGetOwner(), "stop"

;
llListen(99, "", llGetOwner(), "go"

;
}
listen(integer channel, string name, key id, string message)
{
integer run = (llStringTrim(llToLower(message), STRING_TRIM) == "go"

;
string me = llGetScriptName();
integer t = llGetInventoryNumber(INVENTORY_SCRIPT);
integer a;
string inventory;
for(a = 0; a < t; a++)
{
inventory = llGetInventoryName(INVENTORY_SCRIPT, a);
if(inventory != me)
llSetScriptState(inventory, run);
}
llOwnerSay("All scripts " + message);
}
}