Search the Community
Showing results for tags 'تعديل مود شراء رتب'.
-
سلام عليكم ابي تعديل مود شراء رتب ابيه لما الشخص يشتري رتبة جديدة تنسحب القديمة منه + حاولت في الدمن مخالف صار بس بس لما يكون معه سعر الرتبة يقله صسابك محظور بس لما مايكون معه سعرها يقله ليس لديك ساعات الكواد ---------------- ملف سيرفر -------- xAddToGroupFunction_ = function ( Group,Price,Name ) local account = getAccountName(getPlayerAccount(source)); if isGuestAccount(getPlayerAccount(source)) then return outputChatBox("#ff4f00* ( #ffffffBuy Admin #ff4f00) : #ffffff * يجب عليك التسجيل اولاَ",source,255,0,0,true); end if isObjectInACLGroup("user."..account, aclGetGroup(tostring(Group))) then return outputChatBox("#ff4f00* ( #ffffffBuy Admin #ff4f00) : #ffffff** لديك هذهـ الرتبة فعـلا ! ",source,255,0,0,true); end local sValue = getElementData( source,'PlayTime' ) if not sValue then sValue = '0:0:0' end local data = split(sValue,':') local hour = tonumber( data[1] ) if hour == nil or not tonumber(hour) then hour = 0 end if ( hour >= tonumber(Price)) then if isObjectInACLGroup ("user."..account, aclGetGroup ( "Admin_x" ) ) then -- تأكدت من ان اللاعب مب محظور ------------------------------------------------------------------------------------------------- if isObjectInACLGroup ("user."..account, aclGetGroup( tostring(Group)) ) then aclGroupRemoveObject (aclGetGroup( tostring(Group)), "user."..account) aclGroupAddObject (aclGetGroup( tostring(Group)),"user."..account); outputChatBox("#ff4f00* ( #ffffffBuy Admin #ff4f00) : #ffffff** تم اضافة الرتبة بنجاح | "..Name,source,0,255,0,true); else aclGroupAddObject (aclGetGroup( tostring(Group)),"user."..account); outputChatBox("#ff4f00* ( #ffffffBuy Admin #ff4f00) : #ffffff** تم اضافة الرتبة بنجاح | "..Name,source,0,255,0,true); end ------------------------------------------------------------------------------------------------- else outputChatBox("#ff4f00* ( #ffffffBuy Admin #ff4f00) : #ffffff** الحساب الخاص بك محظور | "..Name,source,255,0,0,true); end else outputChatBox("#ff4f00* ( #ffffffBuy Admin #ff4f00) : #ffffff**ليس لديك ساعات كافية",source,255,0,0,true); end end addEvent("Accept:the:request",true) addEventHandler("Accept:the:request",root,xAddToGroupFunction_)