Jump to content

Jorgito'Molina

Members
  • Posts

    46
  • Joined

  • Last visited

Everything posted by Jorgito'Molina

  1. Al colocar pickups en un solo interior funcionan normal ... Pero al colocar pickups en màs de 1 interior sale error, no sale ningun de los dos.
  2. local sw = createPickup (2221.2, -1148.2, 1025.8, 0, 100, 10000, 50) local tw = createPickup (2221.2, -1150.5, 1025.8, 2, 32, 10000, 500) local wd = createPickup (2221.3, -1152.9, 1025.8, 2, 27, 10000, 500) function test () setElementInterior ( source, 15 ) setElementDimension ( source, 0 ) end addEventHandler ( "onResourceStart", getRootElement(), test ) local ts = createPickup (-2170.7, 645.79999, 1052.4, 0, 100, 30000, 50) local tw = createPickup (-2168.3999, 645.90002, 1052.4, 2, 32, 20000, 500) local tt = createPickup (-2166.3, 645.90002, 1052.4, 2, 31, 20000, 500) function chinense () setElementInterior ( source, 1 ) setElementDimension ( source, 0 ) end addEventHandler ( "onResourceStart", getRootElement (), chinense ) Al colocar pickups en un solo interior funcionan normal ... Pero al colocar pickups en màs de 1 interior sale error, no sale ningun de los dos.
  3. Regards community of " Multi Theft Auto ". Being sitting forehead wing tv, me surgio this doubt. And it wanted that me of the following doubt. *Since they did his the first resource. *As they learned to programme. Maybe: *To read very much code, to modify very much code. *Reading manual and practising. Since it wanted they were telling me his anecdotes of as they learned, since they were his first steps. This way to continue or maybe bear in mind. Even not eh begun lua, not ce as beginning. I HAVE MANY DESIRES OF LEARNING TO PROGRAMME BUT NOT CE WHERE BEGINNING HELP HELP HELP!!!
  4. Deservedly all these contributions, updates, changes.
  5. Jorgito'Molina

    Doubt?

    For that the MTA this SA in constant update. Is it a free code? His users help to contribute it The programmers actuan in the moment. Please say to me for MTA SA it is the best game.
  6. Who. Tanto tiempo buscando ese recurso. Muchas gracias depato123.
  7. Como se llama o, donde puedo conseguirlo. El recurso que al escribir sale las letras en la parte superior del skin. Example:
  8. Ningún sistema está seguro si lo utiliza una persona porque lo vulnerable es la persona. Kevin Mitnick.
  9. not, all good. please close post.
  10. WHOOO, fix the code local police1 = createPickup (2251.99, 2489.39, 10.99, 1, 25, 10000, 60) local police2 = createPickup (2295.36, 2461.00, 1082, 0, 100, 10000, 60) function MarkerHit( thePlayer ) if ( source == police1 or source == police2 ) then local model = getElementModel( thePlayer ) if model~= 29 then if model~= 181 then cancelEvent() end end end end addEventHandler ( "onPickupHit", root, MarkerHit ) thanks to Mr.Pres[T]ege Samer The Best IIYAMA
  11. put two pickup private is running perfect... for not working two skins. police1 = createPickup (2251.99, 2489.39, 10.99, 1, 25, 10000, 60) police2 = createPickup (2295.36, 2461.00, 1082, 0, 100, 10000, 60) function MarkerHit( thePlayer ) if (source == police1) or (source == police2) then if not (getElementModel( thePlayer ) == 29 or 181 ) then cancelEvent() end end end addEventHandler ( "onPickupHit", root, MarkerHit ) problem in line 7.
  12. Yes, yes... i am noob, in lua, I have 13 years problem?
  13. Code is normal. police = createPickup ( 2251.99, 2489.39, 10.99, 1, 25, 10000, 60 ) function MarkerHit( thePlayer ) if not (getElementModel( thePlayer ) == 29) then cancelEvent() end end addEventHandler ( "onPickupHit", police, MarkerHit ) PROBLEM OF CODE. police = createPickup = { 2251.99, 2489.39, 10.99, 1, 25, 10000, 60, 2295.36, 2461.00, 1082, 0, 100, 10000, 60, } function MarkerHit( thePlayer ) if not (getElementModel( thePlayer ) == 29 or 181) then cancelEvent() end end addEventHandler ( "onPickupHit", police, MarkerHit ) easy problem, help
  14. who, working Thanks you Mr.Pres[T]ege, and TheIceman1 for you help.
  15. function resetPlayerScore (thePlayer) local pname = getPlayerAccount( killer) setElementData(thePlayer,"kills",0) setElementData(thePlayer,"deaths",0) setAccountData( account, "kills", 0) setAccountData( account, "deaths", 0) local playerAccount = getPlayerAccount ( source ) outputChatBox(tostring(pname) .." YOU SCORE KILL/DEATHS IS 0", getRootElement(), 255, 0, 0, true ) end addCommandHandler("resetscore", resetPlayerScore) problem in setAccountData, not delete score of account help.
×
×
  • Create New...