Jump to content

FuriouZ

Members
  • Posts

    459
  • Joined

  • Last visited

Everything posted by FuriouZ

  1. FuriouZ

    How do to ?

    Hello! Can someone help ,give some functions how do do it ? I mean that a car can destroy objects so easily Video is here:
  2. FuriouZ

    Question

    C'mon why you don't reas what i sayd ? I sayd "I got it " = "I got it working or Works" Anyway thanks for the help. This topic going out of topic
  3. FuriouZ

    Question

    READ IT.
  4. FuriouZ

    Question

    There isn't my language.
  5. FuriouZ

    Question

    Okay,i got that,but as i sayd i am newibe in scripting,so i don't understand all what you're saying..also i am not good enough in english.
  6. FuriouZ

    Question

    Well,i created a fast gui.. GUIEditor = { button = {}, window = {}, memo = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(547, 85, 249, 381, "TEST", false) guiWindowSetSizable(GUIEditor.window[1], false) GUIEditor.memo[1] = guiCreateMemo(10, 24, 229, 320, "Just testing gui......", false, GUIEditor.window[1]) GUIEditor.button[1] = guiCreateButton(74, 344, 101, 27, "Close", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") end ) I need that i doesn't have to calculate all gui elements in local x, y = guiGetScreenSize() Is it possible that i only calculate window and other elements on it changing automally or something.... ?? I say again i don't have good english.
  7. FuriouZ

    Question

    Hello all! I have question about resolution,that is here some easyer way to fix something eg: gui i have a gui GUIEditor.staticimage[1] = guiCreateStaticImage(0, 0, 800, 600, "img/backround.png", false) All buttons,labels etc are on image. Default resolution is 800x600,but i need that it is in same position in all resolutions i know that i can do it with local x, y = guiGetScreenSize() 800/800 = 1 600/600 = 1 But then i have to do it with all buttons etc and it is only waste of time ... so i ask,that is here some easyer way to fix gui position on all resolutions ?
  8. You need to add here some part of your code,then scripters can help you.
  9. Really cool ,man ! But you deleded it or what ? I mean in community
  10. Thanks bro. But I had same problem, my Windows crashed and these almost all maps got removed. LOL,Me too.
  11. I like bank and bus stp the most. Mechanic stop is so simple,but really cool Anyway keep up good work ! I thik if i get some time then i create farcry 3 style map again from zero and release for public
  12. Doesn't work I don't wan't put full code here,but this is first part: GUIEditor = { button = {}, staticimage = {}, label = {}, gridlist = {} } addEventHandler("onClientResourceStart", resourceRoot, function() --PHONE GUIEditor.staticimage[1] = guiCreateStaticImage(519, 0, 289, 580, "img/phone.png", false) Then comes: Images,buttons etc... and then this part: GUIEditor.gridlist[1] = guiCreateGridList(19, 57, 250, 465, false, GUIEditor.staticimage[1]) guiGridListAddColumn(GUIEditor.gridlist[1], "Your current stats are below", 0.9) for i = 1, 5 do guiGridListAddRow(GUIEditor.gridlist[1]) end guiSetVisible( GUIEditor.gridlist[1], false ) guiGridListSetItemText(GUIEditor.gridlist[1], 0, 1, "Name : "..getPlayerName(localPlayer).."", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 1, 1, "Money : "..getPlayerMoney(localPlayer).." €", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 2, 1, "Health : "..getElementHealth(localPlayer).." %", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 3, 1, "Amour : "..getPedArmor(localPlayer).." %", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 4, 1, "PING : "..getPlayerPing(localPlayer).."", false, false) end ) Last ")" closes the first part "addEventHandler("onClientResourceStart", resourceRoot, function()" I did like this : GUIEditor = { button = {}, staticimage = {}, label = {}, gridlist = {} } addEventHandler("onClientResourceStart", resourceRoot, setTimer ( function() and closed it : guiGridListSetItemText(GUIEditor.gridlist[1], 4, 1, "PING : "..getPlayerPing(localPlayer).."", false, false) end,50,0 ) end I tryed to add "setTimer (" before to "for i = 1, 5 do" but it didn't work Thanks for helping i know that i am an idiot ,but i am newibe in scripting anyway
  13. My windows crashed and i had install new windows,so i lost all my maps This topic can be locked
  14. You don't need copy .bak files at all,because they are backups.(zmodeler)
  15. I love them ! If GTA V comes out,render thoose skins too
  16. Yeah,drifting definitley ! But also drag would be cool..
  17. Then i don't have any idea..
  18. Closing and opening phone doesn't refresh,but can you explain more please,how to refresh them via setTimer ? Anyway,thanks for helping Here is my phone (messaging and calculator arent done jet)
  19. Thank you! But how to refresh money without restarting script ?
  20. Try it add item to your inventory and then drag it away and you can drag how much you want lol.
  21. Local player
  22. Okay,me again I creating phone to my server and i have an question ,is possible to put functions like getPlayerMoney to gridlist and if then how ? Pic: Here's my code: GUIEditor.gridlist[1] = guiCreateGridList(19, 57, 250, 465, false, GUIEditor.staticimage[1]) guiGridListAddColumn(GUIEditor.gridlist[1], "Your current stats are below", 0.9) for i = 1, 3 do guiGridListAddRow(GUIEditor.gridlist[1]) end guiSetVisible( GUIEditor.gridlist[1], false ) guiGridListSetItemText(GUIEditor.gridlist[1], 0, 1, "-", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 1, 1, "-", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 2, 1, "-", false, false) PS: i am newibe in scripting,i try to figure out how much i can from wiki,but if i can't then i'll post here..
  23. FuriouZ

    Disconnect

    Okay,it works,thanks,but there isn't other way widhout kick'ing player ?
  24. FuriouZ

    Disconnect

    Debug: s_settings.lua:12: Access denied @ 'executeCommandHandler' still doesn't work
×
×
  • Create New...