Jump to content

Razzer47

Members
  • Posts

    16
  • Joined

  • Last visited

Everything posted by Razzer47

  1. Razzer47

    New chat

    How i can make new chat .. like help chat (where newbies ask) and public chat (where you chat with the players that around you)
  2. how to add map icon in my server? simply and easy way
  3. how can i attach toys (glasses, hats, etc..) to player "like samp"
  4. request code that if the player clicked on the button the sound start
  5. how to spawn particle effects in the map?
  6. add Create(Dynamic)Object function in map editor, so we can add effects to the map.
  7. i'v created gui with buttons, now how i script the gui and buttons ? like making F3 to open the gui
  8. this is the panel with buttons : GUIEditor = { tab = {}, tabpanel = {}, button = {}, window = {}, gridlist = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(217, 121, 400, 428, "Car Control", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) GUIEditor.gridlist[1] = guiCreateGridList(20, 28, 364, 58, false, GUIEditor.window[1]) GUIEditor.tabpanel[1] = guiCreateTabPanel(35, 117, 339, 287, false, GUIEditor.window[1]) GUIEditor.tab[1] = guiCreateTab("Car Doors", GUIEditor.tabpanel[1]) GUIEditor.button[1] = guiCreateButton(10, 83, 149, 76, "Open", false, GUIEditor.tab[1]) guiSetFont(GUIEditor.button[1], "sa-header") guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF5FFE00") GUIEditor.button[2] = guiCreateButton(176, 83, 149, 76, "Close", false, GUIEditor.tab[1]) guiSetFont(GUIEditor.button[2], "sa-header") guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFFE1D00") GUIEditor.tab[2] = guiCreateTab("Car Lights", GUIEditor.tabpanel[1]) GUIEditor.button[3] = guiCreateButton(10, 82, 149, 74, "On", false, GUIEditor.tab[2]) guiSetFont(GUIEditor.button[3], "sa-header") guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FF5FFE00") GUIEditor.button[4] = guiCreateButton(180, 82, 149, 74, "Off", false, GUIEditor.tab[2]) guiSetFont(GUIEditor.button[4], "sa-header") guiSetProperty(GUIEditor.button[4], "NormalTextColour", "FFFE1D00") GUIEditor.tab[3] = guiCreateTab("Car Lock", GUIEditor.tabpanel[1]) GUIEditor.button[5] = guiCreateButton(10, 82, 151, 75, "Lock", false, GUIEditor.tab[3]) guiSetFont(GUIEditor.button[5], "sa-header") guiSetProperty(GUIEditor.button[5], "NormalTextColour", "FF5FFE00") GUIEditor.button[6] = guiCreateButton(178, 82, 151, 75, "Unlock", false, GUIEditor.tab[3]) guiSetFont(GUIEditor.button[6], "sa-header") guiSetProperty(GUIEditor.button[6], "NormalTextColour", "FFFE1D00") GUIEditor.tab[4] = guiCreateTab("Hood", GUIEditor.tabpanel[1]) GUIEditor.button[7] = guiCreateButton(10, 83, 149, 77, "Open", false, GUIEditor.tab[4]) guiSetFont(GUIEditor.button[7], "sa-header") guiSetProperty(GUIEditor.button[7], "NormalTextColour", "FF5FFE00") GUIEditor.button[8] = guiCreateButton(180, 83, 149, 77, "Close", false, GUIEditor.tab[4]) guiSetFont(GUIEditor.button[8], "sa-header") guiSetProperty(GUIEditor.button[8], "NormalTextColour", "FFFE1D00") GUIEditor.tab[5] = guiCreateTab("Truck", GUIEditor.tabpanel[1]) GUIEditor.button[9] = guiCreateButton(10, 87, 144, 80, "Open", false, GUIEditor.tab[5]) guiSetFont(GUIEditor.button[9], "sa-header") guiSetProperty(GUIEditor.button[9], "NormalTextColour", "FF5FFE00") GUIEditor.button[10] = guiCreateButton(183, 87, 146, 80, "Close", false, GUIEditor.tab[5]) guiSetFont(GUIEditor.button[10], "sa-header") guiSetProperty(GUIEditor.button[10], "NormalTextColour", "FFFE1D00") GUIEditor.button[11] = guiCreateButton(369, 96, 21, 21, "X", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[11], "default-bold-small") guiSetProperty(GUIEditor.button[11], "NormalTextColour", "FF00FBF8") end ) addEventHandler("onClientRender", root, function() dxDrawText("Car Control", 273, 157, 561, 198, tocolor(0, 0, 254, 255), 1.20, "bankgothic", "center", "center", false, false, true, false, false) end ) addEventHandler("onClientGUIClick", root, -- i need script the buttons like "car doors" open - open the car doors / close - close the car doors
  9. need someone help me to make mod, i'v done with gui and buttons now i need to put codes for each button but i dont know how ! i need help please, pm me or reply
  10. i'v make panel with guieditor, but how to put codes in buttons that i make it in the panel? HELP
  11. how to use them for guieditor?
  12. sorry i mean for guieditor, is that for guieditor?
  13. code for "open car doors" code for "close car doors" code for "open car hood" code for "close car doors" code for "open car truck" code for "close car truck" code for "turn on car lights" code for "turn off car lights" code for "lock car doors" code for "unlock car doors" help please?
  14. all maps not loading !
  15. after i saved my map, i reopen the client and new version of mta show up 1.3.2, after i update my client i open up game editor and i cant load my old map! please help
×
×
  • Create New...