tootao123
Members- 
                
Posts
37 - 
                
Joined
 - 
                
Last visited
 
Everything posted by tootao123
- 
	script oh more i want know how edit it can add my msn [email protected] why need chang location, local more tell me how i will add objects i dont want just box
 - 
	hi, i want know why my server not appear in list mta? i openned port of my router 22003 and 22005 and i send ip to my friend they enter normaly only not appear in list mta why ? can tell me why ?? my mta is 1.0.2
 - 
	i want give rights of panel admin
 - 
	who have give me please the original hay --Modified by Ransom players = getElementsByType ( "player" ) root = getRootElement () scoreboardRes = getResourceFromName("scoreboard") addEventHandler("onResourceStop",getResourceRootElement(getThisResource()), function() call(scoreboardRes,"removeScoreboardColumn","Current level") call(scoreboardRes,"removeScoreboardColumn","Max level") call(scoreboardRes,"removeScoreboardColumn","Health") end ) function spawnFunct ( passedPlayer ) r = 20 angle = math.random(133, 308) --random angle between 0 and 359.99 centerX = -12 centerY = -10 spawnX = r*math.cos(angle) + centerX --circle trig math spawnY = r*math.sin(angle) + centerY --circle trig math spawnAngle = 360 - math.deg( math.atan2 ( (centerX - spawnX), (centerY - spawnY) ) ) spawnPlayer ( passedPlayer, spawnX, spawnY, 3.3, spawnAngle ) end for k,v in ipairs(players) do --Game start spawn spawnFunct ( v ) end function playerJoin ( ) fadeCamera ( source, true ) spawnFunct ( source ) end addEventHandler ( "onPlayerJoin", root, playerJoin ) function playerWasted ( ) setTimer ( spawnFunct, 3000, 1, source ) end addEventHandler ( "onPlayerWasted", root, playerWasted ) -- To do: -- * Dynamic circle spawn -- Options: local options = { x = 4, y = 4, --z = 49, -- +1 z = get("levels") - 1, -- +1 --b = 245, b = get("blocks"), r = 4 } -- Don't touch below! local matrix = {} local objects = {} local moving = {} local xy_speed local z_speed local root = getRootElement() local barrier_x local barrier_y local barrier_r function move () --outputDebugString("move entered") local rand repeat rand = math.random ( 1, options.b ) until (moving[rand] ~= 1) local object = objects[ rand ] local move = math.random ( 0, 5 ) --outputDebugString("move: " .. move) local x,y,z local x2,y2,z2 = getElementPosition ( object ) local free = {} copyTable(matrix,free) getFree(free) x = x2 / -4 y = y2 / -4 z = z2 / 3 if (move == 0) and (x ~= 1) and (free[x-1][y][z] == 0) then moving[rand] = 1 local s = 4000 - xy_speed * z setTimer (done, s, 1, rand, x, y, z) x = x - 1 matrix[x][y][z] = 1 --outputDebugString("moving obj") moveObject ( object, s, x2 + 4, y2, z2, 0, 0, 0 ) elseif (move == 1) and (x ~= options.x) and (free[x+1][y][z] == 0) then moving[rand] = 1 local s = 4000 - xy_speed * z setTimer (done, s, 1, rand, x, y, z) x = x + 1 matrix[x][y][z] = 1 --outputDebugString("moving obj") moveObject ( object, s, x2 - 4, y2, z2, 0, 0, 0 ) elseif (move == 2) and (y ~= 1) and (free[x][y-1][z] == 0) then moving[rand] = 1 local s = 4000 - xy_speed * z setTimer (done, s, 1, rand, x, y, z) y = y - 1 matrix[x][y][z] = 1 --outputDebugString("moving obj") moveObject ( object, s, x2, y2 + 4, z2, 0, 0, 0 ) elseif (move == 3) and (y ~= options.y) and (free[x][y+1][z] == 0) then moving[rand] = 1 local s = 4000 - xy_speed * z setTimer (done, s, 1, rand, x, y, z) y = y + 1 matrix[x][y][z] = 1 --outputDebugString("moving obj") moveObject ( object, s, x2, y2 - 4, z2, 0, 0, 0 ) elseif (move == 4) and (z ~= 1) and (free[x][y][z-1] == 0) then moving[rand] = 1 local s = 3000 - z_speed * z setTimer (done, s, 1, rand, x, y, z) z = z - 1 matrix[x][y][z] = 1 --outputDebugString("moving obj") moveObject ( object, s, x2, y2, z2 - 3, 0, 0, 0 ) elseif (move == 5) and (z ~= options.z) and (free[x][y][z+1] == 0) then moving[rand] = 1 local s = 3000 - z_speed * z setTimer (done, s, 1, rand, x, y, z) z = z + 1 matrix[x][y][z] = 1 --outputDebugString("moving obj") moveObject ( object, s, x2, y2, z2 + 3, 0, 0, 0 ) end -- setTimer ("move", 100 ) end function onThisResourceStart ( ) call(scoreboardRes,"addScoreboardColumn","Current level") call(scoreboardRes,"addScoreboardColumn","Max level") call(scoreboardRes,"addScoreboardColumn","Health") --outputChatBox("* Haystack-em-up v1.43 by Aeron", root, 255, 100, 100) --PFF meta is good enough --Calculate speed velocity xy_speed = 2000 / (options.z + 1) z_speed = 1500 / (options.z + 1) --Clean matrix for x = 1,options.x do matrix[x] = {} for y = 1,options.y do matrix[x][y] = {} for z = 1,options.z do matrix[x][y][z] = 0 end end end --Place number of haybails in matrix local x,y,z for count = 1,options.b do repeat x = math.random ( 1, options.x ) y = math.random ( 1, options.y ) z = math.random ( 1, options.z ) until (matrix[x][y][z] == 0) matrix[x][y][z] = 1 objects[count] = createObject ( 3374, x * -4, y * -4, z * 3 ) --, math.random ( 0, 3 ) * 90, math.random ( 0, 1 ) * 180 , math.random ( 0, 1 ) * 180 ) end --Place number of rocks in matrix for count = 1,options.r do repeat x = math.random ( 1, options.x ) y = math.random ( 1, options.y ) z = math.random ( 1, options.z ) until (matrix[x][y][z] == 0) matrix[x][y][z] = 1 createObject ( 1305, x * -4, y * -4, z * 3, math.random ( 0, 359 ), math.random ( 0, 359 ), math.random ( 0, 359 ) ) end --Calculate tower center and barrier radius barrier_x = (options.x + 1) * -2 barrier_y = (options.y + 1) * -2 if (options.x > options.y) then barrier_r = options.x / 2 + 20 else barrier_r = options.y / 2 + 20 end --Place top-haybail + minigun createObject ( 3374, barrier_x, barrier_y, options.z * 3 + 3 ) thePickup = createPickup ( barrier_x, barrier_y, options.z * 3 + 6, 3, 2880, 1 ) setTimer ( move, 100, 0 ) setTimer ( barrier, 1000, 1) fadeCamera ( getRootElement(), true ) end function barrier () local barrier = createColCircle ( barrier_x, barrier_y, barrier_r ) addEventHandler ( "onColShapeLeave", barrier, function ( p ) if ( getElementType ( p ) == "player" ) then killPed ( p ) outputChatBox( "* Killed: Don't walk away.", p, 255, 100, 100 ) end end ) end function onPickupHit ( player ) if source == thePickup then outputChatBox( "* " .. getPlayerName ( player ) .. " made it to the top!", root, 255, 100, 100, false ) toggleControl ( player, "fire", true ) destroyElement( source ) end end function done ( id, x, y, z ) moving[id] = 0 matrix[x][y][z] = 0 end function getFree ( src ) local x,y,z local players = getElementsByType( "player" ) for k,v in ipairs(players) do x,y,z = getElementPosition( v ) x = math.floor(x / -4 + 0.5) y = math.floor(y / -4 + 0.5) z = math.floor(z / 3 + 0.5) if (x >= 1) and (x <= options.x) and (y >= 1) and (y <= options.y) and (z >= 1) and (z <= options.z) then src[x][y][z] = 2 end end end function copyTable ( src, des ) for k,v in ipairs(src) do if (type(v) == "table") then des[k] = {} copyTable(src[k],des[k]) else des[k] = v end end end --addEventHandler( "onResourceStart", root, function() onMapLoad() end) --addEventHandler( "onPickupHit", root, function() onPickupHit() end) --addEventHandler( "onPlayerJoin", root, function() onPlayerJoin() end) addEventHandler( "onResourceStart", getResourceRootElement(getThisResource()), onThisResourceStart) addEventHandler( "onPickupHit", root, onPickupHit) must i create other and it not work with hay my msn [email protected]
 - 
	i dont know if is climbing one add the objects to play uping and moving to the object finish
 - 
	not is with editor ????? is hay i want add maps more i put the spawnpoint and the objects and it not work not spawn AND NOW ?
 - 
	<map edf:definitions="ctf,editor_main"> <object id="object (elecfence_BAR) (1)" model="987" interior="0" dimension="0" posX="1559.6135253906" posY="-1353.3403320313" posZ="328.51031494141" rotX="0" rotY="0" rotZ="316.10510253906" /> <object id="object (elecfence_BAR) (2)" model="987" interior="0" dimension="0" posX="1564.8875732422" posY="-1342.6575927734" posZ="328.51031494141" rotX="0" rotY="0" rotZ="243.90405273438" /> <object id="object (elecfence_BAR) (3)" model="987" interior="0" dimension="0" posX="1554.1839599609" posY="-1344.9583740234" posZ="328.51031494141" rotX="0" rotY="0" rotZ="351.63195800781" /> <object id="object (elecfence_BAR) (4)" model="987" interior="0" dimension="0" posX="1550.58203125" posY="-1333.6823730469" posZ="328.51031494141" rotX="0" rotY="0" rotZ="287.83862304688" /> <object id="object (elecfence_BAR) (5)" model="987" interior="0" dimension="0" posX="1544.5476074219" posY="-1341.8302001953" posZ="328.51031494141" rotX="0" rotY="0" rotZ="28.3310546875" /> <object id="object (elecfence_BAR) (6)" model="987" interior="0" dimension="0" posX="1534.0520019531" posY="-1336.2506103516" posZ="328.51031494141" rotX="0" rotY="0" rotZ="332.22827148438" /> <object id="object (elecfence_BAR) (7)" model="987" interior="0" dimension="0" posX="1534.9217529297" posY="-1345.0590820313" posZ="328.51031494141" rotX="0" rotY="0" rotZ="71.471557617188" /> <object id="object (elecfence_BAR) (8)" model="987" interior="0" dimension="0" posX="1523.1624755859" posY="-1346.8531494141" posZ="328.51031494141" rotX="0" rotY="0" rotZ="8.6215209960938" /> <object id="object (elecfence_BAR) (9)" model="987" interior="0" dimension="0" posX="1529.6330566406" posY="-1353.3321533203" posZ="328.51031494141" rotX="0" rotY="0" rotZ="116.03875732422" /> <object id="object (elecfence_BAR) (10)" model="987" interior="0" dimension="0" posX="1521.1243896484" posY="-1361.6448974609" posZ="328.51031494141" rotX="0" rotY="0" rotZ="44.497589111328" /> <object id="object (elecfence_BAR) (11)" model="987" interior="0" dimension="0" posX="1531.4564208984" posY="-1362.6965332031" posZ="328.51031494141" rotX="0" rotY="0" rotZ="155.88464355469" /> <object id="object (elecfence_BAR) (12)" model="987" interior="0" dimension="0" posX="1530.5850830078" posY="-1374.5418701172" posZ="328.51031494141" rotX="0" rotY="0" rotZ="86.089508056641" /> <object id="object (elecfence_BAR) (13)" model="987" interior="0" dimension="0" posX="1539.5377197266" posY="-1368.9249267578" posZ="328.51031494141" rotX="0" rotY="0" rotZ="191.2587890625" /> <object id="object (elecfence_BAR) (14)" model="987" interior="0" dimension="0" posX="1547.2860107422" posY="-1377.9222412109" posZ="328.51031494141" rotX="0" rotY="0" rotZ="130.93560791016" /> <object id="object (elecfence_BAR) (15)" model="987" interior="0" dimension="0" posX="1550.1180419922" posY="-1368.7309570313" posZ="328.51031494141" rotX="0" rotY="0" rotZ="228.10498046875" /> <object id="object (elecfence_BAR) (16)" model="987" interior="0" dimension="0" posX="1561.8062744141" posY="-1371.0954589844" posZ="328.51031494141" rotX="0" rotY="0" rotZ="168.78369140625" /> <object id="object (elecfence_BAR) (17)" model="987" interior="0" dimension="0" posX="1557.9854736328" posY="-1362.3304443359" posZ="328.51031494141" rotX="0" rotY="0" rotZ="270.98303222656" /> <object id="object (elecfence_BAR) (18)" model="987" interior="0" dimension="0" posX="1568.9372558594" posY="-1357.7154541016" posZ="328.51031494141" rotX="0" rotY="0" rotZ="203.1728515625" /> <pickup id="pickup (health) (1)" type="health" interior="0" amount="100" respawn="30000" dimension="0" posX="1560.1137695313" posY="-1358.1381835938" posZ="329.45346069336" rotX="0" rotY="0" rotZ="0" /> <pickup id="pickup (health) (2)" type="health" interior="0" amount="100" respawn="30000" dimension="0" posX="1555.1817626953" posY="-1367.1987304688" posZ="329.45346069336" rotX="0" rotY="0" rotZ="0" /> <pickup id="pickup (health) (3)" type="health" interior="0" amount="100" respawn="30000" dimension="0" posX="1558.5501708984" posY="-1348.1806640625" posZ="329.4609375" rotX="0" rotY="0" rotZ="0" /> <pickup id="pickup (health) (4)" type="health" interior="0" amount="100" respawn="30000" dimension="0" posX="1550.4562988281" posY="-1341.16015625" posZ="329.45797729492" rotX="0" rotY="0" rotZ="0" /> <pickup id="pickup (health) (5)" type="health" interior="0" amount="100" respawn="30000" dimension="0" posX="1538.1657714844" posY="-1341.1579589844" posZ="329.46475219727" rotX="0" rotY="0" rotZ="0" /> <pickup id="pickup (health) (6)" type="health" interior="0" amount="100" respawn="30000" dimension="0" posX="1529.2524414063" posY="-1348.3419189453" posZ="329.4609375" rotX="0" rotY="0" rotZ="0" /> <pickup id="pickup (health) (7)" type="health" interior="0" amount="100" respawn="30000" dimension="0" posX="1527.2360839844" posY="-1358.1317138672" posZ="329.4609375" rotX="0" rotY="0" rotZ="0" /> <pickup id="pickup (health) (8)" type="health" interior="0" amount="100" respawn="30000" dimension="0" posX="1533.0665283203" posY="-1367.5187988281" posZ="329.4609375" rotX="0" rotY="0" rotZ="0" /> <pickup id="pickup (health) (9)" type="health" interior="0" amount="100" respawn="30000" dimension="0" posX="1544.3410644531" posY="-1371.3221435547" posZ="329.45343017578" rotX="0" rotY="0" rotZ="0" /> <object id="object (garage_sfn01) (1)" model="9321" interior="0" dimension="0" posX="1548.5155029297" posY="-1366.2092285156" posZ="327.60000610352" rotX="0" rotY="0" rotZ="0" /> <object id="object (garage_sfn01) (2)" model="9321" interior="0" dimension="0" posX="1544.2629394531" posY="-1366.1868896484" posZ="327.60000610352" rotX="0" rotY="0" rotZ="0" /> <object id="object (garage_sfn01) (3)" model="9321" interior="0" dimension="0" posX="1542.7386474609" posY="-1366.1251220703" posZ="327.60000610352" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (1)" model="3374" interior="0" dimension="0" posX="1544.1121826172" posY="-1353.5783691406" posZ="329.96783447266" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (2)" model="3374" interior="0" dimension="0" posX="1547.646484375" posY="-1353.5695800781" posZ="332.96783447266" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (3)" model="3374" interior="0" dimension="0" posX="1551.3684082031" posY="-1353.6146240234" posZ="335.96783447266" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (4)" model="3374" interior="0" dimension="0" posX="1551.3624267578" posY="-1357.1279296875" posZ="338.96783447266" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (5)" model="3374" interior="0" dimension="0" posX="1551.3947753906" posY="-1360.7247314453" posZ="341.96783447266" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (6)" model="3374" interior="0" dimension="0" posX="1551.4171142578" posY="-1364.3471679688" posZ="344.96783447266" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (7)" model="3374" interior="0" dimension="0" posX="1547.7376708984" posY="-1364.3745117188" posZ="347.96783447266" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (8)" model="3374" interior="0" dimension="0" posX="1544.2524414063" posY="-1364.4447021484" posZ="350.96783447266" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (9)" model="3374" interior="0" dimension="0" posX="1540.4997558594" posY="-1364.4617919922" posZ="353.96783447266" rotX="0" rotY="0" rotZ="0" /> <object id="object (sub_roadbarrier) (1)" model="973" interior="0" dimension="0" posX="1534.2022705078" posY="-1364.2852783203" posZ="355.20001220703" rotX="90" rotY="0" rotZ="0" /> <object id="object (sub_roadbarrier) (2)" model="973" interior="0" dimension="0" posX="1525.2014160156" posY="-1364.2863769531" posZ="355.20001220703" rotX="90" rotY="0" rotZ="0" /> <object id="object (sw_logs3) (2)" model="12808" interior="0" dimension="0" posX="1509.9637451172" posY="-1359.7048339844" posZ="356" rotX="0" rotY="0" rotZ="89.730041503906" /> <object id="object (sw_logs3) (3)" model="12808" interior="0" dimension="0" posX="1500.1319580078" posY="-1360.1944580078" posZ="356" rotX="0" rotY="0" rotZ="89.725341796875" /> <object id="object (sw_logs3) (4)" model="12808" interior="0" dimension="0" posX="1489.2543945313" posY="-1360.4696044922" posZ="356" rotX="0" rotY="0" rotZ="89.725341796875" /> <object id="object (sw_logs3) (5)" model="12808" interior="0" dimension="0" posX="1491.7309570313" posY="-1361.0935058594" posZ="356" rotX="0" rotY="0" rotZ="270.26550292969" /> <object id="object (cxrf_a51_stairs) (1)" model="3399" interior="0" dimension="0" posX="1477.3095703125" posY="-1357.5751953125" posZ="358.96215820313" rotX="0" rotY="0" rotZ="180.54052734375" /> <object id="object (SW_haybreak02) (10)" model="3374" interior="0" dimension="0" posX="1476.89453125" posY="-1354.7946777344" posZ="360.48739624023" rotX="0" rotY="0" rotZ="0" /> <object id="object (crackfactwalkc) (1)" model="11234" interior="0" dimension="0" posX="1462.7678222656" posY="-1355.1065673828" posZ="363.86923217773" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (12)" model="3374" interior="0" dimension="0" posX="1478.9857177734" posY="-1353.8840332031" posZ="353" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (13)" model="3374" interior="0" dimension="0" posX="1475.087890625" posY="-1353.8955078125" posZ="360.48739624023" rotX="0" rotY="0" rotZ="310.15014648438" /> <object id="object (SW_haybreak02) (14)" model="3374" interior="0" dimension="0" posX="1473.9617919922" posY="-1351.3587646484" posZ="360.48739624023" rotX="0" rotY="0" rotZ="280.23962402344" /> <object id="object (SW_haybreak02) (15)" model="3374" interior="0" dimension="0" posX="1474.201171875" posY="-1348.6291503906" posZ="360.48739624023" rotX="0" rotY="0" rotZ="250.32934570313" /> <object id="object (SW_haybreak02) (16)" model="3374" interior="0" dimension="0" posX="1475.8687744141" posY="-1346.3840332031" posZ="360.48739624023" rotX="0" rotY="0" rotZ="220.41906738281" /> <object id="object (SW_haybreak02) (17)" model="3374" interior="0" dimension="0" posX="1478.5491943359" posY="-1345.0904541016" posZ="360.48739624023" rotX="0" rotY="0" rotZ="101.00390625" /> <object id="object (SW_haybreak02) (18)" model="3374" interior="0" dimension="0" posX="1480.5084228516" posY="-1345.599609375" posZ="360.48739624023" rotX="0" rotY="0" rotZ="51.152801513672" /> <object id="object (SW_haybreak02) (19)" model="3374" interior="0" dimension="0" posX="1481.77734375" posY="-1347.6219482422" posZ="360.48739624023" rotX="0" rotY="0" rotZ="11.272338867188" /> <object id="object (SW_haybreak02) (20)" model="3374" interior="0" dimension="0" posX="1481.3470458984" posY="-1349.9217529297" posZ="360.48739624023" rotX="0" rotY="0" rotZ="332.05725097656" /> <object id="object (SW_haybreak02) (21)" model="3374" interior="0" dimension="0" posX="1480.2326660156" posY="-1352.2122802734" posZ="360.48739624023" rotX="0" rotY="0" rotZ="321.951171875" /> <object id="object (SW_haybreak02) (22)" model="3374" interior="0" dimension="0" posX="1478.6038818359" posY="-1354.3831787109" posZ="360.48739624023" rotX="0" rotY="0" rotZ="321.94885253906" /> <object id="object (SW_haybreak02) (23)" model="3374" interior="0" dimension="0" posX="1477.8420410156" posY="-1350.2830810547" posZ="350" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (24)" model="3374" interior="0" dimension="0" posX="1477.841796875" posY="-1350.2822265625" posZ="350" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (25)" model="3374" interior="0" dimension="0" posX="1477.8449707031" posY="-1353.6636962891" posZ="350" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (26)" model="3374" interior="0" dimension="0" posX="1474.4611816406" posY="-1353.6905517578" posZ="350" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (27)" model="3374" interior="0" dimension="0" posX="1474.4609375" posY="-1353.6904296875" posZ="350" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (28)" model="3374" interior="0" dimension="0" posX="1474.4627685547" posY="-1350.2576904297" posZ="350" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (29)" model="3374" interior="0" dimension="0" posX="1474.4564208984" posY="-1347.2639160156" posZ="350" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (30)" model="3374" interior="0" dimension="0" posX="1474.4560546875" posY="-1347.263671875" posZ="350" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (31)" model="3374" interior="0" dimension="0" posX="1477.8010253906" posY="-1347.2454833984" posZ="350" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (32)" model="3374" interior="0" dimension="0" posX="1477.80078125" posY="-1347.2451171875" posZ="350" rotX="0" rotY="0" rotZ="0" /> <pickup id="pickup (health) (10)" type="health" interior="0" amount="100" respawn="30000" dimension="0" posX="1477.4926757813" posY="-1346.7709960938" posZ="352.50601196289" rotX="0" rotY="0" rotZ="0" /> <pickup id="pickup (health) (11)" type="health" interior="0" amount="100" respawn="30000" dimension="0" posX="1474.3116455078" posY="-1347.0137939453" posZ="352.50601196289" rotX="0" rotY="0" rotZ="0" /> <pickup id="pickup (health) (12)" type="health" interior="0" amount="100" respawn="30000" dimension="0" posX="1475.8190917969" posY="-1346.9149169922" posZ="352.50601196289" rotX="0" rotY="0" rotZ="0" /> <object id="object (wall1) (1)" model="13647" interior="0" dimension="0" posX="1454.4470214844" posY="-1350.3221435547" posZ="349.39999389648" rotX="0" rotY="0" rotZ="0" /> <object id="object (wall1) (2)" model="13647" interior="0" dimension="0" posX="1420.189453125" posY="-1350.29296875" posZ="349.39999389648" rotX="0" rotY="0" rotZ="0" /> <object id="object (sw_haypile05) (1)" model="12918" interior="0" dimension="0" posX="1396.791015625" posY="-1345.7397460938" posZ="350.39331054688" rotX="0" rotY="0" rotZ="0" /> <object id="object (sw_haypile05) (2)" model="12918" interior="0" dimension="0" posX="1395.3330078125" posY="-1352.7821044922" posZ="350.39331054688" rotX="0" rotY="0" rotZ="180.54052734375" /> <object id="object (bevmangar_LAW2) (1)" model="3604" interior="0" dimension="0" posX="1386.3420410156" posY="-1349.0880126953" posZ="353" rotX="0" rotY="0" rotZ="0" /> <object id="object (sub_roadbarrier) (3)" model="973" interior="0" dimension="0" posX="1359.8896484375" posY="-1349.203125" posZ="354" rotX="90" rotY="0" rotZ="0" /> <object id="object (sub_roadbarrier) (4)" model="973" interior="0" dimension="0" posX="1351.8869628906" posY="-1349.1959228516" posZ="354" rotX="90" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (33)" model="3374" interior="0" dimension="0" posX="1346.2349853516" posY="-1348.8413085938" posZ="355.80072021484" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (34)" model="3374" interior="0" dimension="0" posX="1346.2296142578" posY="-1345.6276855469" posZ="358.80072021484" rotX="0" rotY="0" rotZ="0" /> <object id="object (des_cockbody) (1)" model="16776" interior="0" dimension="0" posX="1359.1201171875" posY="-1342.8001708984" posZ="357.30673217773" rotX="0" rotY="0" rotZ="270.27026367188" /> <object id="object (SW_haybreak02) (35)" model="3374" interior="0" dimension="0" posX="1346.1948242188" posY="-1341.7843017578" posZ="358.80072021484" rotX="0" rotY="0" rotZ="0" /> <object id="object (a51_spottower) (1)" model="3279" interior="0" dimension="0" posX="1351.5319824219" posY="-1338.7081298828" posZ="376.38485717773" rotX="0" rotY="0" rotZ="270.27026367188" /> <object id="object (a51_spottower) (2)" model="3279" interior="0" dimension="0" posX="1349.2841796875" posY="-1338.6943359375" posZ="360.30673217773" rotX="0" rotY="0" rotZ="270.26916503906" /> <object id="object (SW_haybreak02) (36)" model="3374" interior="0" dimension="0" posX="1351.1163330078" posY="-1334.6773681641" posZ="393.95697021484" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (37)" model="3374" interior="0" dimension="0" posX="1351.0755615234" posY="-1330.7503662109" posZ="393.95697021484" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (38)" model="3374" interior="0" dimension="0" posX="1351.0561523438" posY="-1326.9974365234" posZ="393.95697021484" rotX="0" rotY="0" rotZ="0" /> <object id="object (ctddwwnblk_las2) (1)" model="5189" interior="0" dimension="0" posX="1351.7459716797" posY="-1310.2634277344" posZ="390" rotX="0" rotY="0" rotZ="0" /> <object id="object (ctddwwnblk_las2) (2)" model="5189" interior="0" dimension="0" posX="1351.7484130859" posY="-1279.6314697266" posZ="390" rotX="0" rotY="0" rotZ="0" /> <object id="object (wall1) (3)" model="13647" interior="0" dimension="0" posX="1319.9537353516" posY="-1300.8913574219" posZ="395.54064941406" rotX="0" rotY="0" rotZ="180.54052734375" /> <object id="object (wall1) (4)" model="13647" interior="0" dimension="0" posX="1319.9603271484" posY="-1300.2672119141" posZ="395.54064941406" rotX="0" rotY="0" rotZ="180.53833007813" /> <object id="object (SW_haybreak02) (40)" model="3374" interior="0" dimension="0" posX="1260.1368408203" posY="-1301.2744140625" posZ="396.60000610352" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (41)" model="3374" interior="0" dimension="0" posX="1264.1328125" posY="-1301.2451171875" posZ="399.19088745117" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (42)" model="3374" interior="0" dimension="0" posX="1256.3039550781" posY="-1301.2807617188" posZ="394" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (43)" model="3374" interior="0" dimension="0" posX="1252.4020996094" posY="-1301.2712402344" posZ="391.10000610352" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (44)" model="3374" interior="0" dimension="0" posX="1248.6722412109" posY="-1301.2672119141" posZ="388.10000610352" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (45)" model="3374" interior="0" dimension="0" posX="1244.9172363281" posY="-1301.3397216797" posZ="385.10000610352" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (46)" model="3374" interior="0" dimension="0" posX="1241.2409667969" posY="-1301.3388671875" posZ="382.10000610352" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (47)" model="3374" interior="0" dimension="0" posX="1237.7640380859" posY="-1301.3161621094" posZ="379.10000610352" rotX="0" rotY="0" rotZ="0" /> <object id="object (SW_haybreak02) (48)" model="3374" interior="0" dimension="0" posX="1234.1103515625" posY="-1301.3714599609" posZ="376.10000610352" rotX="0" rotY="0" rotZ="0" /> <object id="object (wall1) (6)" model="13647" interior="0" dimension="0" posX="1284.9228515625" posY="-1301.2724609375" posZ="395.54064941406" rotX="0" rotY="0" rotZ="180.53833007813" /> <object id="object (a51_spottower) (3)" model="3279" interior="0" dimension="0" posX="1229.5313720703" posY="-1298.0466308594" posZ="361.17813110352" rotX="0" rotY="0" rotZ="0" /> <object id="object (a51_spottower) (4)" model="3279" interior="0" dimension="0" posX="1229.8157958984" posY="-1300.8741455078" posZ="345.10000610352" rotX="0" rotY="0" rotZ="0" /> <object id="object (a51_spottower) (5)" model="3279" interior="0" dimension="0" posX="1234.6983642578" posY="-1303.9055175781" posZ="328.10000610352" rotX="0" rotY="0" rotZ="1.0805358886719" /> <object id="object (BinNt07_LA) (1)" model="1337" interior="0" dimension="0" posX="2471.3332519531" posY="-1686.1318359375" posZ="13.157037734985" rotX="0" rotY="0" rotZ="0" /> <team id="team (1)" name="team" color="#FFFFFFFF" interior="0" posX="2482.1940917969" posY="-1681.3288574219" posZ="12.831230163574" rotX="0" rotY="0" rotZ="0" /> <team id="team (2)" name="team" color="#FFFFFFFF" interior="0" posX="2482.1940917969" posY="-1681.3288574219" posZ="12.831230163574" rotX="0" rotY="0" rotZ="0" /> <spawnpoint id="spawnpoint (2)" skin="0" interior="0" posX="1533.95703125" posY="-1355.2890625" posZ="329.45327758789" rotX="0" rotY="0" rotZ="0" /> <spawnpoint id="spawnpoint (3)" skin="0" interior="0" posX="1538.3387451172" posY="-1356.3869628906" posZ="329.46319580078" rotX="0" rotY="0" rotZ="0" /> <spawnpoint id="spawnpoint (4)" skin="0" interior="0" posX="1538.6650390625" posY="-1348.5869140625" posZ="329.46200561523" rotX="0" rotY="0" rotZ="0" /> <object id="object (k_cargo3) (1)" model="2975" interior="0" dimension="0" posX="1214.8562011719" posY="-1226.943359375" posZ="306.8483581543" rotX="0" rotY="0" rotZ="0" /> <object id="object (lasntrk1) (1)" model="3566" interior="0" dimension="0" posX="1250.4068603516" posY="-1305.8973388672" posZ="328.4573059082" rotX="0" rotY="0" rotZ="0" /> <spawnpoint id="spawnpoint (1)" skin="0" interior="0" posX="1537.1037597656" posY="-1350.2897949219" posZ="329.458984375" rotX="0" rotY="0" rotZ="0" /> <object id="object (lasntrk2) (1)" model="3568" interior="0" dimension="0" posX="1268.4390869141" posY="-1305.9822998047" posZ="320.14932250977" rotX="0" rotY="0" rotZ="0" /> <object id="object (wall1) (2)" model="13647" interior="0" dimension="0" posX="1376.0760498047" posY="-1348.6801757813" posZ="353.38726806641" rotX="0" rotY="0" rotZ="0" /> hi i need help about climbing resourcer i created one map today and i put the definitions ctf and put the spawnpoit more it not work i start the resoucer and not work why ? need start other resourcer?
 - 
	hi Guys i want know how i can give supermoderator rights ? you can send how is? please
 - 
	Welcome to THE-MATRIX RULES:We do not accept any kind of cheat, chiter, trainer on this server, so do not use or will be banned from this server ----------------------------------------------------------------------------------------------------- To Spanish Nosotros no acepta ningún tipo de apuntes, chiter, formador en este servidor, así que no utilice o será expulsados de este servidor ----------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------- Classes -The Law -Police: los santos police arrest wanted players by hitting then with you nighstick pulling them out of a vehice -Sherif: Contry Sherif arrest wanted players by hitting then with you nighstick pulling them out of a vehice -Army: reserves be all you can be ---------------------------------------------------------------------------------------------------- Gangs: -Mexican:Mexican gang kill all non-Mexicans! -Colombian:Colombian gang kill all non-Columbians -Britsh Britsh gang kill all non-Britsh -Ukranian:Ukranian gang kill all non-Ukranian -Japanese:Japanese gang kill all non-Japanese -Chinese:Chinese gang kill all non-Japanese ----------------------------------------------------------------------------------------------------- SPECIAL Jumpers: Jumpers,Spawn with A parachute RedNecks: RedNecks Grab Some moonshine and a Tec-9 Pimp:Defend your Strippers Stripper: Can earn extra money with the worlds oldest profission. Kneel down In front of damaged player and right click Crime Fighters: we take the law in our own hands Bikers: biker spawn ----------------------------------------------------------------------------------------------------- CLANS: The Papas RD// Mafia DIOSES SICARIOS ReS|Resistence ----------------------------------------------------------------------------------------------------- Server commands: type "/register pass" to register with the server. type "/login pass" to login. type "/logout" to logout your account type "/grab" use in helicpter ---------------------------------------------------------------------------------------------------- register name password to create an account login name password to login to account lock # to lock house unlock # to unblock house report to report cheat kill to kill yourself ---------------------------------------------------------------------------------------------------- you can heal at vending machines and hot dog stands. weapons are at most spawns armour is at police and army spawns. bank will not save your money if you are not logged in ---------------------------------------------------------------------------------------------------- Server Admins ---------------------------------------------------------------------------------------------------- Sr.Admins Clone LORD_PAPA Ne0 Pulsar Aesir ----------------------------------------------------------------------------------------------------- Admins : Fresh Snow Warmachine ---------------------------------------------------------------------------------------------------- Moderators : Cosack la-vida Profet@______ Geeko SlipknorxD ---------------------------------------------------------------------------------------------------- END
 - 
	WE ARE ACCEPTING NEW CLANS
 - 
	Welcome to THE-MATRIX RULES:We do not accept any kind of cheat, chiter, trainer on this server, so do not use or will be banned from this server ----------------------------------------------------------------------------------------------------- To Spanish Nosotros no acepta ningún tipo de apuntes, chiter, formador en este servidor, así que no utilice o será expulsados de este servidor ----------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------- Classes -The Law -Police: los santos police arrest wanted players by hitting then with you nighstick pulling them out of a vehice -Sherif: Contry Sherif arrest wanted players by hitting then with you nighstick pulling them out of a vehice -Army: reserves be all you can be ---------------------------------------------------------------------------------------------------- Gangs: -Mexican:Mexican gang kill all non-Mexicans! -Colombian:Colombian gang kill all non-Columbians -Britsh Britsh gang kill all non-Britsh -Ukranian:Ukranian gang kill all non-Ukranian -Japanese:Japanese gang kill all non-Japanese -Chinese:Chinese gang kill all non-Japanese ----------------------------------------------------------------------------------------------------- SPECIAL Jumpers: Jumpers,Spawn with A parachute RedNecks: RedNecks Grab Some moonshine and a Tec-9 Pimp:Defend your Strippers Stripper: Can earn extra money with the worlds oldest profission. Kneel down In front of damaged player and right click Crime Fighters: we take the law in our own hands Bikers: biker spawn ----------------------------------------------------------------------------------------------------- CLANS: The Papas RD// Mafia DIOSES SICARIOS ReS|Resistence ----------------------------------------------------------------------------------------------------- Server commands: type "/register pass" to register with the server. type "/login pass" to login. type "/logout" to logout your account type "/grab" use in helicpter ---------------------------------------------------------------------------------------------------- register name password to create an account login name password to login to account lock # to lock house unlock # to unblock house report to report cheat kill to kill yourself ---------------------------------------------------------------------------------------------------- you can heal at vending machines and hot dog stands. weapons are at most spawns armour is at police and army spawns. bank will not save your money if you are not logged in ---------------------------------------------------------------------------------------------------- Server Admins ---------------------------------------------------------------------------------------------------- Sr.Admins Clone LORD_PAPA Ne0 Pulsar Aesir ----------------------------------------------------------------------------------------------------- Admins : Fresh Snow Warmachine ---------------------------------------------------------------------------------------------------- Moderators : Cosack la-vida Profet@______ Geeko SlipknorxD ---------------------------------------------------------------------------------------------------- END
 
