AR/removeAccount: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 30: Line 30:
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==انظر ايضاً==
{{AR Account_functions}}
{{AR Account_functions}}


[[en:setAccountPassword]]
[[en:setAccountPassword]]

Revision as of 03:51, 28 August 2012

هذه الوظيفة لـ حذف حساب مسجل مسبقاً

Syntax

bool removeAccount ( account theAccount )

العناصر المطلوبة

  • theAccount: الحساب الذي تريد حذفه

Returns

إذا كان الحساب غير موجود false ,إذا تم حذف الحساب بنجاح true يرجع

مثال

/deregister هذا المثال يقوم بحذف حسابك عند أستخدام

function onCmdDeregister(player)
	-- get the account
	local playerAccount = getPlayerAccount(player)
	if playerAccount then
		removeAccount(playerAccount)
		outputChatBox("Account deregistered for "..getPlayerName(player))
	else 
		outputChatBox("Unable to get your account, make sure you are logged in", player)
	end
end
addCommandHandler("deregister",onCmdDeregister)

انظر ايضاً