-
Posts
1,283 -
Joined
-
Last visited
Everything posted by manve1
-
SQLite databases can't be connected between a website ant MTA, you need MySql database.
-
The thing is, if a person makes the farmer job, it won't be exact as you want it too be as it would be whatever he thinks a farmer does ( you never know, he might be a farmer him self ), but as of that, I think the person wouldn't only give his code to 1 random person, instead I think he would post it on mta community
-
It's not a Tutorial (as Solidsnake14 said), as a tutorial contains information how each/main functions work. Another thing that is wrong is that it's not a password, it's a command, a password would be when you hit for example a marker a gui pops up and you have to type the password in an edit box, then hit a button for it to load, if fail for example jail or kick or whatever, but as I said, this is a command, not a password protection (even if you change: '(password)' to random numbers/letters)
-
Bandyk isjunkti anti-virusine, jeigu nepades, pabandyk perinstaliuoti GTA:SA, ir jeigu tai nepades, bandyk dar MTA:SA perinstaliuoti
-
making own zone name script with col shapes
-
I think this is quite funny, but that is just my opinion.
-
Lyg ir nea Bet seip, tai negalejo sumoket kapeiku, tai negalejau padet. Man rodos patis ismoko sita problema sutvarkyt.
-
I can help you out for a decent amount of cash. ofc, i am not going to make multi-room script
-
not to flame or anything, but i can tell you this persons main payment would go through paypal, and he can't connect his card to paypal, so i am pretty sure you're gonna get scammed
-
You have to model the thing from scratch, or pay someone to do it for you.
-
Use 3Ds max to make a plane model, after that creating it, export dff and col, then you'll need txd file (or shaders to make the arrow move). Then replace models .. etc.. another way is just use GTA:SA models to block the road.
-
Maybe use Polish section instead of writing bullcrap in the scripting section that most of us can't understand?
-
Get how many grenades or bullets the person already has, then if it is over the limit ( for some reason ), reduce it, but if it's not an lets say for example you want to buy bullets, then you will need to get the maxAmmo - currentAmmo = allowToBuyAmmo.
-
You have to add the resource, not only yourself
-
na pridesiu tave i skype, pakalbesim apie tai. Nors galejai pasakyt kaip galesi sumoket (pvz. paypal)
-
What scripts will be needed? How much for each script? How are you going to pay for it?
-
O ka mazdaug reiketu scriptinti?
-
well, main dimension is '0'. so if you ain't changing any dimensions then you can simply use the main one. For the 3D text there were a post earlier saying what should be used ( even a script was given ), unfortunately i don't have the link to that post, so you will need to search the forum scripting section. For the rank title to stay above the head you will need to use one of these events ( as timers ain't recommended ): onClientRender onClientPreRender And before you use the events you need to get the position of the player (getElementPosition) and use the Z-axis to place it above the head, of course you can make it more advanced, but for that there is too much of explanation to do.
-
O atlygis koks butu?
-
I see that you didn't look around the community, well, you can always check it out for something new, but I will post one of the useful scripts for your needs: HTTP Mod Loader
-
local mission1Marker = createMarker (2000.58984375, -1733.0361328125, 13.3828125, 'cylinder', 2.0, 255, 0, 0, 150) function mission1 () addEventHandler ("onMarkerHit", mission1Marker, onHit) if getElementType ( hitElement ) == "player" and not isPedInVehicle(hitElement) then triggerClientEvent ("ShowWinWindow", hitElement) end end addEvent ("missionStarts", true) addEventHandler ("missionStarts", getRootElement(), mission1) addEventHandler ("onMarkerHit", mission1Marker, mission1) function onLeave () local money = math.random(2000, 2500) givePlayerMoney (source, money) outputChatBox ("You have got 2000$ Good Job!", source, 0, 255, 0, false)
-
local dgunStatus = false function Dgun ( attacker, weapon, bodypart, loss) if dgunStatus == false then dgunStatus = true; if ( weapon == 24 ) then outputChatBox("Server: D-gun On!",source,0,255,0,true) for i, source in ipairs ( getElementsByType("player") ) target = getPlayerTarget ( source ) if ( target ) then if ( getElementType ( target ) == "vehicle" ) then destroyElement ( target ) outputChatBox("Server: Destroyed!!",source,0,255,0,true) end end end end elseif dgunStatus == true then dgunStatus = false return false; end addEventHandler ( "onVehicleDamage", getRootElement (), Dgun ) addCommandHandler("dgun",Dgun)