هل الكود صحيح
لما طلعت ودخلت الفيب انسحب لحاله بدون يخلص التايمر
addEvent("buy", true)
addEventHandler("buy", root,
function()
local accName = getAccountName ( getPlayerAccount ( source ) )
if ( getPlayerMoney( source ) >= ( 15000000 ) ) then
takePlayerMoney( source, 15000000 )
aclGroupAddObject( aclGetGroup( "VIP" ), "user."..accName )
outputChatBox( " #FDD017* [ VIP ] #aa0000 تم شراء الفي اي بي , بمقابل 15 مليون ! ", source, 255, 0, 0, true )
setTimer( function()
aclGroupRemoveObject( aclGetGroup( "VIP" ), "user."..accName )
end, 10000, 1 )
else
outputChatBox( " #FDD017* [ VIP ] #ff0000 انت لا تمتلك المـال الكــافي للشراء ! ", source, 255, 0, 0, true )
end
end
)