Anderl
Members-
Posts
2,266 -
Joined
-
Last visited
Everything posted by Anderl
-
FFS didn't implement a GUI skin using MTA GUI Skin system, they used images as GUI elements.
-
Falei para você estudar Lua antes de começar a fazer qualquer coisa.
-
Starting resources from the admin panel problem.
Anderl replied to AlexanderYoYoYo's topic in Scripting
First question: mtaserver.conf - Check final of the file and add your resource to the list. Second question: Set to automatically change map on meta.xml or Settings via Admin Panel. -
Other way is: nohup ./$MTA-SERVER-FILE & Where $MTA-SERVER-FILE is the Multi Theft Auto server binary ( for those who didn't still understand, it's the console ).
-
Cara, isso depende do que você quer dizer. Eu acho que você tem é de estudar Lua. http://lua.org http://lua-users.org
-
Heh, my old gay GangWar code! Esse código aí que eu fiz, ele não tem essas paradas não, é so o básico de área do radar + uns eventos quando entra na área.. Ele nem salva as áreas que os team pego.. Tem que mudar muito aí. O melhor é você fazer um do zero pois esse código é antigo e muito mal programado.
-
Mostrando o código do sistema de gangzonas seria bom para ajudar, não? Além disso, só para você ficar sabendo, já que você é novo, ninguém irá fazer recursos para você, aqui é so para pedir ajuda com scripts, não para pedir para os escrever.
-
they script for me because there awsome, and there pro's. One of them has recently uploaded a script to Community, check it out: https://community.multitheftauto.com/ind ... ls&id=5685 Oh really? That's what you call pro?
-
If you have the full source code of MTA:SA, that should be possible.
-
If you mean MTA:SA program for 'customized mta client' then you don't need to do anything more, building MTA:SA client will make players not able to join a server created by that client.
-
They don't, I normally know what seems to be real and fake, so nothing happens, and really, I'm not careful. I guess I'm just lucky, maybe not. Anyway, let's end this off-topic discussion.
-
Only thing anti-virus do is take memory, nothing more. I don't use anti-virus too and I never had problems. I saw lots of people that uses anti-virus and they got lots of virus and BSOD and even got their system fucked up, nothing has never happened to me without any anti-virus. Ok, this is off-topic, let's stop that.
-
Heh, my bad, didn't even see ._.
-
There's no need for use of shaders. Photoshop is enough.
-
It's updated every 2 seconds, there's nothing stopping from select anything.
-
Ops, my bad; I forgot to remove rows before update, copy my code again.
-
First code: local pColumn = guiGridListAddColumn(Grid, 'Player', 0.85) addEventHandler('onClientResourceStart', resourceRoot, function() if (pColumn) then for k,v in next, getElementsByType 'player' do guiGridListSetItemText(Grid, guiGridListAddRow(Grid), pColumn, getPlayerName(v):gsub('#%x%x%x%x%x%x', ''), false, false) pTimer = setTimer(updateList, 2000, 0) end end end ) function updateList() for i = 1, #guiGridListGetRowCount(Grid) do guiGridListRemoveRow(Grid, i) end for k,v in next, getElementsByType 'player' do guiGridListSetItemText(Grid, guiGridListAddRow(Grid), pColumn, getPlayerName(v):gsub('#%x%x%x%x%x%x', ''), false, false) end end Second code: local pNameLabel = guiCreateLabel(0.325, 0.1, 0.5, 0.2, 'Player Name: ', true, Wnd) addEventHandler('onClientGUIClick', Grid, function() if (pNameLabel) then local pRow = guiGridListGetSelectedItem(source) if (pRow and pRow ~= -1) then guiSetText(pNameLabel, 'Player Name: ' .. guiGridListGetItemText(source, pRow, 1)) end end end, false )
-
Would be worst if you loved those boys
-
I know the function but not the effect file, or the lua script I can not prepare p.s.: sry for my bad english, i used google translator If you can't make such easy thing like drawing an image in the screen, then you should start learning Lua -- drawing an image is a very basic thing.
-
Race gamemode auto enables/disables blur when a map is started. You must disable blur on race gamemode settings ( meta.xml ) or edit gamemode to stop doing that. Thank you!!!!!!!!!!!! You're welcome.
-
Thank you.
-
Hey, I would like to know all supported picture formats by MTA San Andreas. Could someone tell me that? I can't seem to find this on the Wiki.
