
SrPeixoto
Members-
Posts
21 -
Joined
-
Last visited
Everything posted by SrPeixoto
-
Hello everyone, I would like to know if there is a possibility to disable the animation of the character to grab the wall, that is, he can jump, but he won't be able to grab https://imgur.com/a/arVFkD6 https://imgur.com/a/arVFkD6
-
It worked, thank you very much my friend! How can I thank you?
-
apologies for the delay https://imgur.com/a/XEr60L4
-
where it is? Because in the map folder (resource), it doesn't have. is in scene2res folder?
-
i had the bully map mod for gta sa, got the IDE, Dff, Txd, Col (a program asked for this). program name: scene2res I already have the map working perfectly, however I can't remove anything
-
Can you do this for me? you tell me the price you charge. @The_GTA
-
Thank you, had not seen the details. I'm new to the map conversion area so I'm still pretty lost
-
Bem, para começar, consegui carregar o mapa usando o editor dentro do meu próprio servidor. Porém, quando eu deleto algo dentro do mapa e recarrego o mapa, o objeto volta, o que pode ser? Antes era assim, sem carregar nenhum objeto.
-
I talked to you in another topic here on the forum, about editing the map in the map editor @The_GTA
-
It didn't work, could you help me?
- 154 replies
-
- lc
- carmageddon
-
(and 1 more)
Tagged with:
-
I did the conversion, but it doesn't start in the Map Editor... What can it be?
- 154 replies
-
- lc
- carmageddon
-
(and 1 more)
Tagged with:
-
Hi! My name is Matheus, I'm developing a server and I would like to see with you the conversion of the "BULLY" map. What would your price be for us to carry out this project?
-
Estou criando um site, e queria que nesse site, tivesse um local com o numero de players ativos, status do servidor (On - Off)... Tenho um BOT no servidor com isso, mas o rapaz não sabe passar para o site... Exemplo:
-
Vou explicar para vocês o que eu quero, ver se fica mas facil function AreaPlayer( thePlayer, hitElement , matchingDimension ) local elementType = getElementType( hitElement ) if zona[thePlayer] and isElementWithinMarker ( thePlayer, zona[thePlayer] ) then return outputChatBox("", thePlayer, 255, 255, 255, true) end local x,y,z = getElementPosition(thePlayer) zona[thePlayer] = createMarker ( x,y,z, "cylinder", 5, 100, 0, 0, 50 ) attachElements(zona[thePlayer], thePlayer, 0,0,-1) outputChatBox("", thePlayer, 255, 255, 255, true) if getElementType(thePlayer) == "player" then local rand = math.random(1,5) setElementData(thePlayer, "contagio", getElementData(thePlayer, "contagio") + rand) outputChatBox("Você tem #FFFF00"..rand.." #FFFFFF% de infecção.", thePlayer, 255, 255, 255, true) end end addCommandHandler("ct", AreaPlayer) addEventHandler( "onPlayerQuit", root, function ( ) if zona[source] and isElementWithinMarker ( source, zona[source] ) then destroyElement(zona[source]) zona[source] = nil end end) Eu quero que esse codigo, se encaixe com esse de baixo local hillArea = createColRectangle(1402.8900146484,-1834.7972412109, 150, 90) function hill_Enter(thePlayer, matchingDimension) if getElementType(thePlayer) == "player" then local rand = math.random(1,5) setElementData(thePlayer, "contagio", getElementData(thePlayer, "contagio") + rand) outputChatBox("Você tem #FFFF00"..rand.." #FFFFFF% de infecção.", thePlayer, 255, 255, 255, true) end end addEventHandler("onColShapeHit", hillArea, hill_Enter) Ou seja, quando o player entrar em contato com o zona[thePlayer] = createMarker ( x,y,z, "cylinder", 5, 100, 0, 0, 50 ) ele ter essa "função" if getElementType(thePlayer) == "player" then local rand = math.random(1,5) setElementData(thePlayer, "contagio", getElementData(thePlayer, "contagio") + rand) outputChatBox("Você tem #FFFF00"..rand.." #FFFFFF% de infecção.", thePlayer, 255, 255, 255, true) end
-
sem sucesso, faz assim, em vez de ja entrar com, como faço para colocar em BindKey??
-
testei agora, mas nao foi
-
addEventHandler( "onPlayerLogin", root, function ( thePlayer ) if markers[thePlayer] and isElementWithinMarker ( thePlayer, markers[thePlayer] ) then return outputChatBox("Já Existe um Marker em Você!", thePlayer, 255, 255, 255, true) end local x,y,z = getElementPosition(thePlayer) markers[thePlayer] = createMarker ( x,y,z, "cylinder", 5, 100, 0, 0, 50 ) attachElements(markers[thePlayer], thePlayer, 0,0,-1) outputChatBox("Criado com Sucesso !", thePlayer, 255, 255, 255, true) end) addEventHandler( "onPlayerQuit", root, function ( ) if markers[source] and isElementWithinMarker ( source, markers[source] ) then destroyElement(markers[source]) markers[source] = nil end end) então ficaria assim?
-
Deu certo mano mas como eu coloco, para o player ja nascer com ele?
-
Agora que vi, não tá sendo especificado que é no player...
-
Poderiam me explicar melhor, sou novo nessa área ? Ex: Function AreaPlayer() Local x,y,z = GetElementData (localplayer) If End End Nessa parte que não sei
-
Como eu faço para criar uma "área" ao redor do player? EX: onde o jogador faz, um "cilindro" acompanha ele ... Exemplo de "área": https://imgur.com/1xSIcJO