AR/getBanIP

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

هذه الوظيفة تبحث عن الاي بي الخاص بالشخص المتبند في الباند المحدد

Syntax

string getBanIP ( ban theBan )

Required Arguments

  • theBan: الباند الذي تريد احضار ايبي الشخص المتبند منه

Returns

Returns a string of the IP if everything was successful, false if invalid arguments are specified if there was no IP specified for the ban.

مثال

This example will show the user who banned a player the IP adress of that banned player.

function banPlayerCommand ( thisPlayer, commandName, bannedName, reason )
    if ( hasObjectPermissionTo ( thisPlayer, "function.banPlayer" ) ) then --  اذا الشخص كاتب الكلمة لديه التصريحات الكافية للتبنيد
        local bannedPlayer = getPlayerFromNick ( bannedName ) -- احضار اسم المتبند
        if getElementType ( bannedPlayer ) == "player" then -- اذا كان الشخص المتبند لاعب
            local theBan = banPlayer ( bannedPlayer, thisPlayer, reason ) -- يبند الاعب
            outputChatBox ( "ban: " .. bannedName .. " successfully banned", thisPlayer )-- يرسل للشخص المبند ان الشخص المتبند تم تبنيده بنجاح في الشات
            outputChatBox ( "At IP Adress: " ..getBanIP ( theBan ), thisPlayer ) -- يرسل اي بي اللاعب المتبند للشخص الذي بنده في الشات
        end
    else
        outputChatBox ( "ban: You don't have enough permissions", thisPlayer ) -- اذا كان الشخص المبند لا يحمل التصريحات الكافية , يرسل بالشات بانه ليس لديه التصريحات الكافية للتبنيد
    end
end
addCommandHandler("ban", banPlayerCommand)

أنظر ايضاً