Jump to content

كيف أصلح


Recommended Posts

السلام

لقد قمت بصنع الأدمينية

ولاكن هناك بعض الرسائل في

debugscript 3

line2: bad argument @ 'guiGetVisible' [exepted gui-element at argument 1 got nil]

السكريبت كلينت:

function sPanel() 
if (guiGetVisible(window) == true) then   
showCursor(false)         
guiSetVisible (window, false) 
else 
window = guiCreateWindow(351,179,445,318,"Admin Panel [v1.0] by Sparrow",false) 
guiWindowSetSizable(window,false) 
etc, etc... 
end 
end 

Link to comment
function sPanel() 
if window then 
if (guiGetVisible(window) == true) then   
showCursor(false)         
guiSetVisible (window, false) 
else 
showCursor(true)         
guiSetVisible (window, true) 
end 
else 
window = guiCreateWindow(351,179,445,318,"Admin Panel [v1.0] by Sparrow",false) 
guiWindowSetSizable(window,false) 
etc, etc... 
end 
end 
end 

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...