yep done that
ive used this "display cash" script that was posted on the forum.
-- LUA Script - precede every function and global member with lowercase name of script + '_main'
-- Player Displays Cash amount When nearby
function displaycash_main(e)
PlayerDX = g_Entity[e]['x'] - g_PlayerPosX;
PlayerDY = g_Entity[e]['y'] - g_PlayerPosY;
PlayerDZ = g_Entity[e]['z'] - g_PlayerPosZ;
PlayerDist = math.sqrt(math.abs(PlayerDX*PlayerDX)+math.abs(PlayerDY*PlayerDY)+math.abs(PlayerDZ*PlayerDZ));
if PlayerDist < 80 then
Prompt("key is on the second floor");
end
end