Jump to content

12p

Members
  • Posts

    2,608
  • Joined

  • Last visited

Everything posted by 12p

  1. IGNORE THIS
  2. Yes, it should. What do you think about it?
  3. I know you didn't. But compilers will never be perfect. There are DECOMPILERS around the web. So the best way is still NeXTreme's.
  4. Yes I know, kimmis (I'm not idiot, you should already know that). But NeXTreme's way is the best one to avoid resource stealing. That's why I posted it. Compilers will never be perfect.
  5. 12p

    help ASCII..

    Using a table containing all the ASCI character and using string.find inside a "for" , would do the job.
  6. Y qué te cuesta aprender por ti mismo? Te aseguro que PHP no es tan difícil. Mira cuántos resultados puedes encontrar en 5 segundos.
  7. Soren, debo decirte 1 cosa. APRENDE A BUSCAR, CARAJO! Mira, me encontré esto en menos de 10 segundos escribiendo "tp-link TL-WR340G setup" en Google:
  8. It's not confusing It's simple. Here you have a list of things you need: client_anim.lua (search it on "race" gamemode) setTimer addCommandHandler
  9. Que marca de router?
  10. ..."Resources" tab? Or "Maps" tab?
  11. You don't need to change the startup map. You can start them via admin panel.
  12. Don't double post, please. Yes, that's the right directory for your map. Change dimensions... Nvm. If you don't know anything about it, then it shouldn't be a problem. IDK what's wrong then Try making another map of the same type, etc, and test it on your server. Also try using other maps.
  13. 12p

    /kill help

    if hasObjectPermissionTo ( "user."..getAccountName(getPlayerAccount(player)), "command.ban" ) then It will take less time (just 1 file to edit) and probably less lines. But yea, it is easier to just add command handlers lol
  14. Yea, sure: "onClientKey"/bindKey setElementPosition The only way to do this is via scripting in Lua. Fortunately, the script you want is very easy. Just, try to do it, PLEASE. If you at least made some code lines and it's not working, we will help you to develope it and make you understand it.
  15. Maybe you changed the dimension of every element in your map? Does it load when you are in Map Editor?
  16. Maybe this.
  17. 12p

    /kill help

    It makes +2 lines of code per command.
  18. 12p

    PC COMBO QUESTION!

    Those 2 things costs 45,000 "pesos chilenos" (around $70 dollars) I've got 47,000.
  19. 12p

    help me.

    Here you have documentation so you can understand how all this works: https://wiki.multitheftauto.com/wiki/GetPedWeapon https://wiki.multitheftauto.com/wiki/SpawnPlayer https://wiki.multitheftauto.com/wiki/GetPedTotalAmmo https://wiki.multitheftauto.com/wiki/Weapons http://lua-users.org/wiki/TablesTutorial addEventHandler( "onPlayerWasted", getRootElement( ), function() local simpleTable = { } --Create a table to store all the weapon data for i = 0,11 do simpleTable[1][i] = getPedWeapon ( source, i ) --Retrieve all weapons and store them in the table simpleTable[2][i] = getPedTotalAmmo ( source, i ) --Retrieve the ammo of each weapon and store them in the table end setTimer( spawnPlayer, 4000, 1, source, 1177.5682373047, -1323.2587890625, 14.077121734619, rot, skin ) --You must define "rot" and "skin", this won't work just like that. for i = 0,11 do giveWeapon ( source, simpleTable[1][i], simpleTable[2][i], false ) end end ) PS. Next time, go to Scripting forum, please.
  20. Look on admin panel, then go to "Resources". Double click on the "zombies" resource. "Zombie Stream Method" has the same value than default? Also, is there any object blocking the sky in the area where you want the zombies to spawn?
  21. OR: Don't use mapping tools. You can use Map Editor's F3 "Magic Window" to align all your objects, like I do. My map looks like toolbox-mapped, but it's handmade, hehehe BTW: My map can only be played at chaos.de.to
  22. Mmmm... Are you sure you got "Zombie Spawn Streaming" option set to default?
  23. 12p

    [REL]K-Garage

    I think you abused on the buttons size. Make then smaller, for the love of god. lol But it's useful
  24. Try this: Login (your account must be admin). Write "/debugscript 3" in the chat. Start your map resource. Then, tell us here what does it show (tell the whole error please).
  25. 12p

    /kill help

    Isn't useless. It's just a different way to do it and may be easier to create multiple command handlers using one function only.
×
×
  • Create New...