-
Posts
459 -
Joined
-
Last visited
Everything posted by FuriouZ
-
Hello! Can someone help ,give some functions how do do it ? I mean that a car can destroy objects so easily Video is here:
-
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
-
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.
-
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.
-
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 ?
-
You need to add here some part of your code,then scripters can help you.
-
Really cool ,man ! But you deleded it or what ? I mean in community
-
Thanks bro. But I had same problem, my Windows crashed and these almost all maps got removed. LOL,Me too.
-
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
-
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
-
My windows crashed and i had install new windows,so i lost all my maps This topic can be locked
-
You don't need copy .bak files at all,because they are backups.(zmodeler)
-
I love them ! If GTA V comes out,render thoose skins too
-
Yeah,drifting definitley ! But also drag would be cool..
-
[REL] HeroInventory - Inventory System [Groups + More]
FuriouZ replied to Malicious Hero.'s topic in Resources
Then i don't have any idea.. -
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)
-
Thank you! But how to refresh money without restarting script ?
-
[REL] HeroInventory - Inventory System [Groups + More]
FuriouZ replied to Malicious Hero.'s topic in Resources
Try it add item to your inventory and then drag it away and you can drag how much you want lol. -
Local player
-
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..
-
Okay,it works,thanks,but there isn't other way widhout kick'ing player ?
-
Debug: s_settings.lua:12: Access denied @ 'executeCommandHandler' still doesn't work
