AR/addAccount: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 3: Line 3:
هذه الوظيفة تقوم بأضافة حساب جديد إلى قائمة الحسابات المسجلة في السيرفر.
هذه الوظيفة تقوم بأضافة حساب جديد إلى قائمة الحسابات المسجلة في السيرفر.


==Syntax==
تابل تبوله ^_^
<!-- NOTE: don't use 'special' names for variable names, e.g. you shouldn't be writing things like 'player player, vehicle vehicle', instead write something like 'player thePlayer, vehicle vehicleToGetInto'. This is less confusing and prevents the syntax highlighting being odd -->
{{New feature/item|3|1.0|848|
<syntaxhighlight lang="lua">
account addAccount ( string name, string pass )
</syntaxhighlight>
}}
{{Deprecated_feature|3|1.0|
<syntaxhighlight lang="lua">
bool addAccount ( string name, string pass )
</syntaxhighlight>
}}


===العناصر المطلوبة===
TABL TBOLH
<!-- List each argument one per line. This should be the argument's name as in the argument list above, NOT the argument's data type -->
*'''name:''' أسم الحساب الجديد اللذي تريد تسجيلة.
*'''pass:''' كلمة المرور للحساب اللذي تريد تسجيلة.
 
===Returns===
<!-- Make this descriptive. Explain what cases will return false. If you're unsure, add a tag to it so we can check -->
{{New feature|3|1.0 r848|
إذا كان أسم هذا الحساب قد تم تسجيلة مسبقاً أو إذا حدث خطأ ما ''false'' يرجع عنصر ''الحساب'' اللذي تم تسجيلة, أو
}}


==مثال==  
==مثال==  

Revision as of 23:01, 1 June 2013

هذه الوظيفة تقوم بأضافة حساب جديد إلى قائمة الحسابات المسجلة في السيرفر.

تابل تبوله ^_^

TABL TBOLH

مثال

Click to collapse [-]
Server

مثال 1 : /register <password> هذا يسمح للاعبين بالتسجيل في السيرفر عن طريق أستخدام

function registerPlayer(source, commandName, password)
	-- Check if the password field is blank or not (only blank if they didnt enter one)
	if (password ~= "" and password ~= nil) then
		--Attempt to add the account, and save its value in a var
		local accountAdded = addAccount(getPlayerName(source), password)
		if (accountAdded) then
			--  Tell the user all is done
			outputChatBox("Thank you "..getPlayerName(source)..", you're now registed, you can login with /login", source)
		else
			-- There was an error making the account, tell the user
			outputChatBox("Error creating account, contact the server admin", source)
		end
	else
		-- There was an error in the syntax, tell the user the correct syntax.
		outputChatBox("Error creating account, correct syntax: /register <password>", source)
	end
end
addCommandHandler("register", registerPlayer) -- add the command handler

This code differs by allowing the user to change their username that they wish to use.

مثال 2 : This enables players to register on your server by using /register <username> <password> in the chat window.

function registerPlayer(source, commandName, username, password)
        if(password ~= "" and password ~= nil and username ~= "" and username ~= nil) then
                local accountAdded = addAccount(username,password)
                if(accountAdded) then
                        outputChatBox("Thank you "..getPlayerName(source)..", you're now registed, you can login with /login",source)
                else
                        outputChatBox("Error creating account, contact the server admin.",source)
                end
        else
                outputChatBox("Error creating account, correct syntax: /register <nick> <pass>",source)
        end
end
addCommandHandler("register", registerPlayer) -- add the command handler

مثال 3 : This code differs again so the user can only register once /register <username> <password>.

local bRegisteredOnce = false

function registerPlayer(source, commandName, username, password)
        if(password ~= "" and password ~= nil and username ~= "" and username ~= nil and bRegisteredOnce == false) then
                local accountAdded = addAccount(username,password)
                if(accountAdded) then
                        outputChatBox("Thank you " .. getPlayerName(source)..", you're now registed, you can login with /login",source)
                        bRegisteredOnce = true
                else
                        outputChatBox("Error creating account, contact the server admin.",source)
                end
        else
                if bRegisteredOnce == true then
                    outputChatBox("You already registered on this server!",source)
                else
                    outputChatBox("Error creating account, correct syntax: /register <nick> <pass>",source)
                end
        end
end
addCommandHandler("register", registerPlayer) -- add the command handler

انظر ايضاً