illestiraqi
Members- 
                
Posts
256 - 
                
Joined
 - 
                
Last visited
 
Everything posted by illestiraqi
- 
	Well When I try to New Map, Save Map, Or Open Map, it would say "Cannot Create a new map while another is being saved or loaded" And I went to my MTA folder and removed BIG files, I tried uninstalling it and :~ but JUST wont work, heres a screenie... http://i47.tinypic.com/xf5j6x.png
 - 
	For me it seemed alright but its just not working anyone help please
 - 
	This script is connected to ACL Group and when I created the ACL group this is how it looked like: (My Username is illestiraqi) Is there anything wrong with LUA file, ACL Group, or Both? For me they seem alright... but I just want to have it connected to the ACL group please local Skinmarker = createMarker(919.59997558594, -1004.299987793, 37, "cylinder", 1.0, 33, 33, 33, 255) -- umkleide local theTeam = createTeam( "FBI", 31, 31, 31 ) addEventHandler("onMarkerHit", Skinmarker, function(hitElement) if(isPedInVehicle(hitElement)) then return end if not(isFBI(hitElement)) then return end setElementModel(hitElement, 286) setPlayerTeam(hitElement, theTeam) end) function isFBI(thePlayer) local accName = getAccountName ( getPlayerAccount ( thePlayer ) ) if isObjectInACLGroup ("user."..accName, aclGetGroup ( "FBI" ) ) then return true; else return false; end end
 - 
	I was hoping for a GUI window with a selection of vehicles, can someone please put LUA and ill add the vehicles, heres an example of how i want the gui, and can only spawn to a maximum of 1 Vehicle: Please make it exac size, this is the actual size i want it to be like.
 - 
	what about this, have a look, will it work? fbigate1 = createObject (980, 938.8994140625, -1027.5, 33.700000762939, 0, 0, 0 ) fbicol = createColCircle ( 938.86096191406, -1015.993347168, 34.869926452637, 0 ) function openfbigates(thePlayer) if getElementModel( thePlayer ) == 286 then moveObject (fbigate1, 5000, 938.8994140625, -1027.5, 28.200000762939 ) end end addEventHandler( "onColShapeHit", fbicol, openfbigates ) function closefbigates(thePlayer) if getElementModel( thePlayer ) == 286 then moveObject (fbigate1, 5000, 938.8994140625, -1027.5, 33.700000762939 ) end end addEventHandler( "onColShapeLeave", fbicol, closefbigates )
 - 
	Well I tried changing around a script but didnt work please help fbigate1 = createObject (980, 938.8994140625, -1027.5, 33.700000762939, 0, 0, 0 ) fbicol = createColCircle ( 938.86096191406, -1015.993347168, 34.869926452637, 0 ) function openfbigates(thePlayer) if getElementModel( thePlayer ) == 286 then moveObject (fbigate1, 5000, 938.8994140625, -1027.5, 28.200000762939 ) end end addEventHandler( "onColShapeHit", fbicol, openfbigates ) function closefbigates(thePlayer) if getElementModel( thePlayer ) == 286 then moveObject (fbigate1, 5000, 938.8994140625, -1027.5, 28.200000762939 ) end end addEventHandler( "onColShapeLeave", fbicol, closefbigates )
 - 
	I would like the /gostaff command for the Staff on the ACL Admin Groups, the admin groups such as, Moderator, Super Moderator, and Admin. So basically i want those 3 ACL Staff Groups to have access to the /gostaff command and gives them the boy staff skin. Server Side: function togglestaffMode(thePlayer) local account = getPlayerAccount(thePlayer) if (not account or isGuestAccount(account)) then return end local accountName = getAccountName(account) if ( isObjectInACLGroup ( "user.".. accountName, aclGetGroup ( "Admin" ) ) ) then if getElementData(thePlayer,"invincible") then setElementData(thePlayer,"invincible",false) outputChatBox("Staff Mode is now off.",thePlayer,255,255,255) else setElementData(thePlayer,"invincible",true) outputChatBox("Staff Mode is now on.",thePlayer,255,255,255) end end end addCommandHandler("gostaff",togglestaffMode) Server Side 2: function createTeamsOnStart () teamstaff = createTeam ( "Staff", 255, 255, 255 ) end addEventHandler("onResourceStart", resourceRoot, createTeamsOnStart) function lol ( player, command ) setPlayerTeam ( player, teamstaff ) setPlayerSkin(player, 217) end addCommandHandler ( "gostaff", lol ) Client Side: addEventHandler ( "onClientPlayerDamage",root, function () if getElementData(source,"invincible") then cancelEvent() end end) addEventHandler("onClientPlayerStealthKill",localPlayer, function (targetPlayer) if getElementData(targetPlayer,"invincible") then cancelEvent() end end)
 - 
	This is beside the LS PD, Just go to Pershing Square in the middle than go exactly West, and you will find the marker, but if you go in it, it wont get you into the skin automatically and wont bring you to team group pf SWAT. Please Help! local Skinmarker = createMarker(1281, -1664.0999755859, 12.5, "cylinder", 1.0, 0, 0, 651, 255) -- umkleide local theTeam = createTeam( "SWAT Team", 0, 0, 651 ) addEventHandler("onMarkerHit", Skinmarker, function(hitElement) if(isPedInVehicle(hitElement)) then return end if not(isSWAT(hitElement)) then return end setElementModel(hitElement, 285) setPlayerTeam(hitElement, theTeam) end) function isSWAT(thePlayer) local accName = getAccountName ( getPlayerAccount ( thePlayer ) ) if isObjectInACLGroup ("user."..accName, aclGetGroup ( "SWAT" ) ) then return true; else return false; end end
 - 
	Can you please write it all together, just copy mine and write it all cause I dont get what your saying?
 - 
	Well I tried adding the skins part it didn't work, Everything else works, the gate works everything, but just not the skins, so can someone help me. Just don't mess with the gates and stuff just the skins part is the thing that doesn't work, I want those skins to be aloud to open the gate, ty gate1= createObject ( 969, -488.75805664063, -562.94116210938, 24.461265563965, 0, 0, 180 ) gate2 = createObject ( 969, -488.5793762207, -562.96948242188, 24.451913833618, 0, 0, 0 ) gatecol = createColCircle ( -488.6, -562.94116210938, 24.461265563965, 7 ) function opengates(thePlayer) if ( getTeamName(getPlayerTeam(thePlayer)) == "FabulousBloodzGang" ) then moveObject (gate1, 5000, -495, -562.94116210938, 24.461265563965 ) moveObject (gate2, 5000, -481, -562.96948242188, 24.451913833618 ) end end skins = { [ 46 ] = true, [ 47 ] = true, [ 48 ] = true, [ 59 ] = true, [ 66 ] = true, [ 71 ] = true, [ 113 ] = true, [ 120 ] = true, [ 124 ] = true, [ 147 ] = true, [ 163 ] = true, [ 164 ] = true, [ 171 ] = true, [ 172 ] = true, [ 211 ] = true, [ 217 ] = true, [ 240 ] = true, [ 249 ] = true, } addEventHandler( "onColShapeHit", gatecol, opengates ) function closegates(thePlayer) if ( getTeamName(getPlayerTeam(thePlayer)) == "FabulousBloodzGang" ) then moveObject (gate1, 5000, -488.75805664063, -562.94116210938, 24.461265563965 ) moveObject (gate2, 5000, -488.5793762207, -562.96948242188, 24.451913833618 ) end end addEventHandler( "onColShapeLeave", gatecol, closegates )
 - 
	OMG Thank you! Your Script Works! Your Awesome but can you just change the part where you enter and exit it doesn't show any message please and thank you for script but please change that
 - 
	Well I think these 2 are the opisite, because none of these ones dont work, none of them and so please change these 2 around please and try the script please. Door while its Closed: Door while its Opened:
 - 
	Well Jay, yours failed again, trying Alphas now
 - 
	I did try making it by using a gate script and changing it and adding it up but did not work so made this post EDIT: Its not working please fix it and if only one skin change it to 124 skin please
 - 
	Well I tried to script myself and I just couldn't fix it, its just to hard for me so PLEASE and im saying PLEASE make this script for me: Door while its Closed: Door while its Opened: Where I want them standing Object (Just gonna use beach towel, just add them then remove the objects): Skin ID's for the gate to Open: 124, 125, 126, 163, 164, 292, 293, 294. IF YOU CAN MAKE THIS SCRIPT FOR ME I WILL SEND YOU A BIG THANK YOU MESSAGE! IM SORRY IF YOU WANTED TO BE REWARDED BUT UNFORTENTLY I DON'T HAVE NOTHING TO GIVE IN RETURN! Please make this script for me!
 - 
	
Selling 15 maps [All maps are tested, working properly
illestiraqi replied to vipulcoolrule's topic in Showroom
Very Very noob maps dont try selling these but when it comes to DM we love em - 
	MOST BEST MAP EVER! NICE JOB RAFINHA
 - 
	OMG Dc my favourite map and btw I have it
 - 
	AWESOME Map of course because Its Tulio and Sebas AWESOME!
 - 
	Awesome map Skotinka! this is like my 3rd best map from all Skotinkas
 - 
	
[DM]ClaudiO.-_-Vol-2-_-Alien Experience-_ [ 3D Max ]
illestiraqi replied to Hostjng's topic in Showroom
I love this Map! Give me link please for download - 
	Can we please have link? If so thank you
 - 
	OMG Thank you! This is really helpful with F3 Now im make map!
 - 
	Nice Job with all these maps, maybe 300+ hours took you to do all of them combined
 - 
	When I try to make a race maps with the Car Transform and the Repair thing for Race, its broken, I try to change it but the GUI for the nitro thing to change it to repair or transform car wont work so please help me with this I want to make race maps! PLEASE...
 
