-
Posts
1,027 -
Joined
-
Last visited
Everything posted by BorderLine
-
Creo que han mal acostumbrado a elmota a que si el pone un script y nomas hace la gui, despues le hacen el codigo. Nisiquiera se ha dado el tiempo de aprender por si mismo, hace algun tiempo lei en uno de sus post hacia kenix que no tenia tiempo pa aprender. Dudo eso, si ya llevas 500 post y aun no as aprendido nada. Deberias empezar a aprender. Y sino puedes entender, aprende ingles. No creo que tengas un bajo coeficiente intelectual, aunque al parecer...
-
en el de armas usa playSound con el evento onClientPlayerWeaponFire Para los vehiculos no sabria.
-
I try same think, but i think the extrahealth dont work on zombies.
-
thanks for your help cadu its working
-
Hi everyone. Well im trying to make a buy skin with a gui. But my skin dont change. This is my code client addEventHandler("onClientGUIClick",getRootElement(), function (player) if (source == buyleon) then money = getPlayerMoney (source) if (money >= 500000) then player = getLocalPlayer() playSound ( "sounds/shop/thx.mp3", false ) triggerServerEvent ("leon",getLocalPlayer(),leon) else playSound ( "sounds/shop/nocash.mp3", false ) end end end) server function leon () setElementModel ( source, 25,true ) takePlayerMoney(source,500000) end addEvent("leon",true) addEventHandler("leon",getRootElement(),leon) The skin dont change and dont take money. If someone know what is my problem. Debug dont show erros
-
are you kidding me? learn lua like say Kenix and you will know about your error
-
en la comunidad hay algo basico, podrias arreglarlo y ajustarlo a tu medida
-
No pienzo igual que alexs_steel ni que mota. Puede que a ustedes les interese el dinero, hay personas que quisas quieran un espacio en un servidor y puedan aportar sus mapas o scripts. Ese seria mi caso. Te ayudaria perfectamente Askobelev pero mi tiempo es muy limitado, y lo ocupo para scriptear mi servidor Espero puedas encontrar a algien que te ayude
-
sounds like mario kart
-
y como explicas que el mismo evento me sirvio para darles armas a ellos
-
para que se supone que es ese setTimer?
-
Si quieres que sea para todos los jugadores nomas deja el move object y el settimer Le asignas el mismo comando a todas las funciones. Cuando lo apliques se cerraran todas o Bien en una funcion pones todos los moveobjects
-
usa las funciones que vienen con el script de slothman onZombieSpawn
-
Me parece que solo hace esto para aumentar los post. No es primera vez, solid ya bloquio un topic por repetir el tema. @elMota usa el foro para algo eficiente. No es un medio de competicion para que tengas mas post. Aprovecha que gente como carlos,otto, soren, solid, diego , benex y mas ocupan de su tiempo para ayudarte y estas desaprovechandolo
-
try using kenix's script then reconnect and login again. When resource start don show your group, try that
-
true, just i dont give my time to search it. topic its resolved thx for your time man
-
Hi everyone well i dont know what i need add to give back same weapons before to wasted. this is my code addEventHandler( "onPlayerWasted", getRootElement( ), function() local skin = getElementModel(source) local w0 = getPedWeapon (source, 0) local w1 = getPedWeapon (source, 1) local w2 = getPedWeapon (source, 2) local w3 = getPedWeapon (source, 3) local w4 = getPedWeapon (source, 4) local w5 = getPedWeapon (source, 5) local w6 = getPedWeapon (source, 6) local w7 = getPedWeapon (source, 7) local w8 = getPedWeapon (source, 8 ) local w9 = getPedWeapon (source, 9) local w10 = getPedWeapon (source, 10) local w11 = getPedWeapon (source, 11) local w12 = getPedWeapon (source, 12) local a0 = getPedTotalAmmo (source, 0) local a1 = getPedTotalAmmo (source, 1) local a2 = getPedTotalAmmo (source, 2) local a3 = getPedTotalAmmo (source, 3) local a4 = getPedTotalAmmo (source, 4) local a5 = getPedTotalAmmo (source, 5) local a6 = getPedTotalAmmo (source, 6) local a7 = getPedTotalAmmo (source, 7) local a8 = getPedTotalAmmo (source, 8 ) local a9 = getPedTotalAmmo (source, 9) local a10 = getPedTotalAmmo (source, 10) local a11 = getPedTotalAmmo (source, 11) local a12 = getPedTotalAmmo (source, 12) setTimer( spawnPlayer, 5000, 1, source, -343.3, 1544.2, 75.5, 180, skin ) giveWeapon(source, w0, a0, true) giveWeapon(source, w1, a1, true) giveWeapon(source, w2, a2, true) giveWeapon(source, w3, a3, true) giveWeapon(source, w4, a4, true) giveWeapon(source, w5, a5, true) giveWeapon(source, w6, a6, true) giveWeapon(source, w7, a7, true) giveWeapon(source, w8, a8, true) giveWeapon(source, w9, a9, true) giveWeapon(source, w10, a10, true) giveWeapon(source, w11, a11, true) giveWeapon(source, w12, a12, true) end ) Like spawn, i must add settimer to weapons?
-
Con razon me parecia extraño que lo preguntase de nuevo...
-
tu dices, morir y apareser en el mismo sector que has muerto?
-
anyone knoow where i can some web for stream music? im use mp3skull but idk what happen with them. If someone know other web. thx
-
If you add the event "onPlayerJoin" i supose this was a serverside .. Well ill test it
-
Perfect can delete script, or thieves will steal thanks a loot bro
-
i was searching on forum but i didnt find . Is about save team Anyone know why this dont work? debug dont show errors server function onPlayerQuit ( ) local playeraccount = getPlayerAccount ( source ) if ( playeraccount ) and not isGuestAccount ( playeraccount ) then local playerteam = getPlayerTeam ( source ) setAccountData ( playeraccount, "team", playerteam ) end end function onPlayerLogin (_, playeraccount ) if ( playeraccount ) then local playerteam = getAccountData ( playeraccount, "team" ) if ( playerteam ) then setPlayerTeam ( source, playerteam ) end end end addEventHandler ( "onPlayerQuit", getRootElement ( ), onPlayerQuit ) addEventHandler ( "onPlayerLogin", getRootElement ( ), onPlayerLogin)