Jump to content

x[ مساعدة ]x redirectPlayer


#STZ

Recommended Posts

السلام عليكم و رحمة الله و بركاته

طبعا اعتذر ان طلباتي كثرت

لاكن الدراسة جاية فطور سيرفر

الزومبي و الهجولة 

واحتاج مودات كتير لاكن تقابلني بعض المشاكل

حاولت اسوي زر ينقلني لسيرفر الزومبي لاكن ما نفع

محاولتي 

V

addEventHandler('onClientGUIClick',root, 
function() 
    if source == GUIEditor.button[1] then 
        triggerServerEvent("SSM",localPlayer) 
    end 
end)


-- #Server
addEvent('SSM',true)
addEventHandler('SSM',root,
function()
redirectPlayer (source, 212.24.102.198, 29087)
end)

اتمني مساعدتكم

 

Link to comment

ضفته نفس المشكلة

GUIEditor = {
    button = {},
    window = {}
}
addEventHandler("onClientResourceStart", resourceRoot,
    function()
        GUIEditor.window[1] = guiCreateWindow(364, 220, 428, 212, "", false)
        guiWindowSetSizable(GUIEditor.window[1], false)
        guiSetAlpha(GUIEditor.window[1], 1.00)
        guiSetVisible(GUIEditor.window[1],false) 
        GUIEditor.button[1] = guiCreateButton(39, 35, 343, 66, "~][ التحويل اللي سيرفر الزومبي ][~", false, GUIEditor.window[1])
        guiSetFont(GUIEditor.button[1], "default-bold-small")
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF29FB00")
        GUIEditor.button[2] = guiCreateButton(39, 111, 343, 66, "~][ اغلاق اللوحة ][~", false, GUIEditor.window[1])
        guiSetFont(GUIEditor.button[2], "default-bold-small")
        guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFFB0000")    
    end
)

       

addEventHandler('onClientGUIClick',root, 
function() 
    if source == GUIEditor.button[1] then 
        triggerServerEvent("Move",localPlayer) 
    end 
end) 

function FunctionName (  ) -- الفنكش 
    guiSetVisible ( GUIEditor.window[1],true ) -- اظهار اللوحة 
    showCursor ( true ) -- اظهار الماوس 
end -- انهاء الفنكش 
addCommandHandler ( "Server-Move",FunctionName ) --

addEventHandler('onClientGUIClick',root,
function()
if source == GUIEditor.button[2] then
guiSetVisible(GUIEditor.window[1],false) showCursor(false)
end
end
)
addEvent('Move',true)
addEventHandler('Move',root,
function()
redirectPlayer (source,"212.24.102.198", 29087)
end)
<meta>
    <script src="C.lua" type="client" cache="false"></script>
		<script src="S.lua" type="server"></script>
</meta>

 

Link to comment
33 minutes ago, MR.NaiF-MTA said:

ضفته نفس المشكلة


GUIEditor = {    button = {},    window = {}
}
addEventHandler("onClientResourceStart", resourceRoot,
    function()
        GUIEditor.window[1] = guiCreateWindow(364, 220, 428, 212, "", false)
        guiWindowSetSizable(GUIEditor.window[1], false)
        guiSetAlpha(GUIEditor.window[1], 1.00)
        guiSetVisible(GUIEditor.window[1],false) 
        GUIEditor.button[1] = guiCreateButton(39, 35, 343, 66, "~][ التحويل اللي سيرفر الزومبي ][~", false, GUIEditor.window[1])
        guiSetFont(GUIEditor.button[1], "default-bold-small")
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF29FB00")
        GUIEditor.button[2] = guiCreateButton(39, 111, 343, 66, "~][ اغلاق اللوحة ][~", false, GUIEditor.window[1])
        guiSetFont(GUIEditor.button[2], "default-bold-small")
        guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFFB0000")    
    end
)

       

addEventHandler('onClientGUIClick',root, 
function() 
    if source == GUIEditor.button[1] then 
        triggerServerEvent("Move",localPlayer) 
    end 
end) 

function FunctionName (  ) -- الفنكش 
    guiSetVisible ( GUIEditor.window[1],true ) -- اظهار اللوحة 
    showCursor ( true ) -- اظهار الماوس 
end -- انهاء الفنكش 
addCommandHandler ( "Server-Move",FunctionName ) --

addEventHandler('onClientGUIClick',root,
function()
if source == GUIEditor.button[2] then
guiSetVisible(GUIEditor.window[1],false) showCursor(false)
end
end
)

addEvent('Move',true)addEventHandler('Move',root,function()
redirectPlayer (source,"212.24.102.198", 29087)
end)

<meta>    <script src="C.lua" type="client" cache="false"></script>		<script src="S.lua" type="server"></script>
</meta>

 

    <script src="C.lua" type="client" />
	<script src="S.lua" type="server" />

 

Edited by mahmod3
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...