Jump to content

تصحيح كود


Recommended Posts

السلام عليكم

شباب ابي تصححون لي كود

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

ابي اغير يصير يفتح للي عندهم ذي الخاصية :

function.banPlayer --- الاصل 
command.ACL --- وش ابيه انا 

ذا الكود :

addCommandHandler( 'errorhpanel', function( player ) 
  if isObjectInACLGroup( 'user.'..getAccountName( getPlayerAccount( player ) ), aclGetGroup( 'RPC' ) ) or hasObjectPermissionTo( player, 'function.banPlayer', false ) then 
    if not getElementData( player, 'HP_Opened' ) and not getElementData( player, 'mrk_in' ) then 
      triggerClientEvent( player, 'HP_SetVisible', root, true ); 

اتمنى تصححونه باقرب وقت

شكرا

Link to comment

شوف المثال في الويكي

if hasObjectPermissionTo ( player, "resource.YourResourceName.accessPrivateArea", false ) then 
-- اي شيء تبيه يحصل اذا كان مسموح 
else 
--  اي شيء تبيه يحصل اذا كان غير مسموح 
end 

+ اطرح الكود كامل :|

Link to comment
addCommandHandler( 'errorhpanel',  
function ( player ) 
         if isObjectInACLGroup( 'user.'..getAccountName( getPlayerAccount( player ) ), aclGetGroup( 'RPC' ) ) or hasObjectPermissionTo( player, 'command.ACL', false ) then 
              if not getElementData( player, 'HP_Opened' ) and not getElementData( player, 'mrk_in' ) then 
      triggerClientEvent( player, 'HP_SetVisible', root, true ) 
         end 
              end 
end) 
  

Link to comment

ما يمديني اطرح الكود كامل لانه طويل

بس هذا الجزء اللي نحتاجه

  
    addCommandHandler( 'errorhpanel', 
    function ( player ) 
             if isObjectInACLGroup( 'user.'..getAccountName( getPlayerAccount( player ) ), aclGetGroup( 'RPC' ) ) or hasObjectPermissionTo( player, 'command.ACL', false ) then 
                  if not getElementData( player, 'HP_Opened' ) and not getElementData( player, 'mrk_in' ) then 
          triggerClientEvent( player, 'HP_SetVisible', root, true ) 
             end 
                  end 
    end) 
  else 
    outputChatBox( '* Access denied for this command!', player, 255, 36, 51 ); 
  end; 
end ); 
  

في /debugscript 3

ما يجي اي شيء حول هذا سكربت

Link to comment
ما يمديني اطرح الكود كامل لانه طويل

بس هذا الجزء اللي نحتاجه

  
    addCommandHandler( 'errorhpanel', 
    function ( player ) 
             if isObjectInACLGroup( 'user.'..getAccountName( getPlayerAccount( player ) ), aclGetGroup( 'RPC' ) ) or hasObjectPermissionTo( player, 'command.ACL', false ) then 
                  if not getElementData( player, 'HP_Opened' ) and not getElementData( player, 'mrk_in' ) then 
          triggerClientEvent( player, 'HP_SetVisible', root, true ) 
             end 
                  end 
    end) 
  else 
    outputChatBox( '* Access denied for this command!', player, 255, 36, 51 ); 
  end; 
end ); 
  

في /debugscript 3

ما يجي اي شيء حول هذا سكربت

متآكد ذآ كودك ؟

addCommandHandler( 'errorhpanel',  
    function( player ) 
        if hasObjectPermissionTo( player, 'command.ACL', true ) and not getElementData( player, 'HP_Opened' ) and not getElementData( player, 'mrk_in' ) then 
            triggerClientEvent( player, 'HP_SetVisible', root, true ); 
        else 
            outputChatBox( '* Access denied for this command!', player, 255, 36, 51 ); 
        end 
    end 
) 

#EDIT

Edited by Guest
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...