Jump to content

kalitonchik

Members
  • Posts

    102
  • Joined

  • Last visited

Everything posted by kalitonchik

  1. Hello Again, I need help from you this time to develop manhunt game mode the game plan similar to the zombie mode in the manhunt game mode issue differently at the beginning of the manhunt game mode all players is normal But the death of one player will result in that game is a new team - hunters normal players become team - wanted players which should survive, but it is difficult because dead players from wanted team are moving in the hunter team It's cool when a large number of players with saws hunt a last survivor from the wanted team wanted team equipped with bat and a pistol colt hunter team equipped with a saw Tunb problem is that I do not know how to create that first, all were in one team dead go to another team and that round ends on the last survivor please help
  2. I respect very much help I was able to run the script-only with your help the problem was been in the line, he probably did not know where to take command but now everything is working as a confirmation of my screenshoot Once again, give respect 50p and Gamesnert!
  3. I will try change it to getResourceRootElement(getThisResource())
  4. someone might say whot is wrong I run freeroam freeroam loaded then run the SkyGradient script but the script does not work because the line is not something as necessary in this line addEventHandler( "onResourceStart", getResourceRootElement(), 50p so I do not scripter but I want to bring to the script worked link that you gave me = useful for me but I can work with meta.xml but I do not know why the script is not working, so I have a question how much should be lua scripts Two scripts, one client second server? or one (server ore client) I do not know what the problem and how to solve it I really need this script I am not able to solve the problem and I use the alpha build dp2.1
  5. I canэt run this script because error in this line addEventHandler( "onResourceStart", getResourceRootElement(), whot there is not enough !? and skygradient script need to be server.lua client.lua ore only client.lua
  6. 50p when you show the script I said uuu-weee but where should put your script
  7. I have followed the example of Ryder! and I really could go to a server but I was lag, I can not spawn at stakeю and I do not know that wrote 50p
  8. can somebody dares to show a script that works
  9. I can't enter the server from the fact that I can't make a login I enter my username and pass from https://community.multitheftauto.com/ but I can't login and he don't show no erors. [22:53:36] CONNECT: $.Kalitonchik(LV connected (IP: 87.110.127.130) [22:53:46] JOIN: $.Kalitonchik(LV joined the game (IP: 87.110.127.130) [22:53:46] KICK: $.Kalitonchik(LV was kicked from the game by Console (Invalid Serial)
  10. setSkyGradient Many people tried to run this function, but due to lack of knowledge of scripts they have not got to run this function. So please help This function is needed for more impressions of the game mode. This option changes the color of the sky on the system RGB This means you can make a color of the sky which want Whose information is provided on the http://development.mtasa.com/index.php? ... kyGradient enough to launch the setSkyGradient function of the server Also, I still do not know where to fit setSkyGradient function in game mode, or in another place This effect of nature seen in some freeroam servers and :::eXo|Clanserver:::Zombie Mod||www.exo-clan.net so i will do screenshots in the popular server with unusual game mode - Zombie Mode Benefits Beautiful weather is not typical for GTA SA This feature makes the game more intense and nice Help solve the problem I think this feature is interested in many of the owners of servers Thank you for your attention
  11. what I missed I think should use mtasadm-1.0-r231 because it is the most recent 2009-Jan-04 00:07:36 but I have a problem I can not run mtasadm-1.0-r231 it gives me an error problem with GTASA.exe but I have no problem with the exe because I is precisely this exe which supports the MTA waiting for advice or a solution to the problem
  12. Thank you now for us to open up new opportunities for the withdrawal of movies to run the script which specific files need to be in this link is necessary files http://code.google.com/p/multitheftauto ... nloadCount or you can use the MTA sa dm dp1 which can be downloaded from http://www.mtasa.com ( possible ) mtasadm-1.0-r231 is that you need to run the pedestrian script, but mtasadm-1.0-r231 i can't run this aplication mtasadm dp2.x I have no problem running
  13. If you upload a working pedestrian script that would be cool we all hope for you that you upload script in the topic and upload file, or whose system will be able to run the pedestrian script
  14. I went to the site where you can download... but you are sure that we should head be multitheftauto_data-r188 because I downloaded and extract in gta sa folder run game but i was a alpha build dp2.3 and left
  15. robhol I do not blunt and came in and shook http://code.google.com/p/multitheftauto/downloads/list I downloaded exe and replace it with the original, but still i flocks alpha build dp2.3 and still can't I run this function
  16. Where can I get 1.0 alpha builds Scripters please help solve the problem What scripts need to run this function Some can give or show the correct script to run this function
  17. Good.... But what can I do with this multitheftauto_data-r188 file?! I need replace MTA folder, and he will be able to understand CreatePed function!? And I can for pedestrians scripts better use mta sa dm dp1!?
  18. Questions about CreatePed function (assistance is needed for all) My attempt to run the script! ped.LUA file function pedLoad ( name ) createPed ( 120, 2066, 1174.5, 10.6 ) end addEventHandler ( "onResourceStart", getRootElement(), pedLoad ) xml file correctly?! or must have two scripts, client and server side script!? If anyone has the right script, please put it! This gives an error for all who are trying to run CreatePed function! [11:15:10] Starting ped [11:15:10] ERROR: ...eas/server/mods/deathmatch/resourcecache/ped/ped.lua:3: attempt to call global 'createPed' (a nil value) [11:15:10] start: Resource 'ped' started People who know how to run this function must share files! MTA sa DM dp 2.3 is not an option run pedestrians scripts, but some people are able to run pedestrians scripts without dp3! This feature can be run only as gamemode, or you can run a script!? This function need all the owners of servers! Advence Senks!
  19. local count = {} addEventHandler("onResourceStart", getRootElement(), "clothesStart") function clothesStart ( resourcename ) if resourcename ~= getThisResource () then return end --we'll count how many clothes there are for each type and store the numbers in the 'count' table. for type = 0, 17 do local clothes = 0 --we count the clothes for that type by checking each item until no texture is returned. while getClothesByTypeIndex ( type, clothes ) ~= false do clothes = clothes + 1 end --then we store the number count[type] = clothes end setTimer ( "doChangeClothes", 2000, 0 ) end function doChangeClothes () --we store all players in a table local players = getElementsByType ( "player" ) --for each player in that table, for i, player in players do --choose a random type from 0 to 17 type = math.random ( 0, 17 ) if type == 0 or type == 2 then removePlayerClothes ( player, 17 ) end --types 4-12 don't exist if type > 3 and type < 13 then type = math.random ( 0, 3 ) end --we pick a random item from the chosen type local clothing = math.random ( 0, count[type] ) --we get its texture and model via getClothesByTypeIndex texture, model = getClothesByTypeIndex ( type, clothing ) --and we add that piece of clothing to the player. if texture and model then addPlayerClothes ( player, texture, model, type ) end end end
  20. i macke map but i use as-cliff map script i only cheange object pistion....and names mision... can i set in Showroom if map creators are norby89 and driver2!?can i set my map in Showroom
  21. [22:38:17] Could not parse 'settings.xml' file (Invalid file). Starting with an empty settings registry. [22:38:19] ERROR: Couldn't find script welcome.lua for resource welcome [22:38:19] Loading of resource 'welcome' failed I whont welcome msg not from my admin console but lua script function onPlayerConnect() local joinedPlayerName = getClientName ( source ) outputChatBox ( "Welcome " .. joinedPlayerName .. " your txt " , source, 255, 255, 255 ) end addEventHandler("onPlayerJoin", getRootElement (), onPlayerConnect) - -
  22. Is a way to change to Charles clothes?!!! Can script from freerom!?
  23. all mods work... only race mode don't work! [22:30:45] Starting race [22:30:45] Starting killmessages [22:30:45] start: Resource 'race' started [22:30:45] Gamemode 'Race' started. [22:30:45] Starting race-comtebay [22:30:45] start: Resource 'race-comtebay' started [22:30:45] Map 'The Comte Bay' started. [22:30:47] INFO: Resource starting [22:30:47] INFO: onGamemodeMapStart(race-comtebay) [22:30:47] ERROR: xmlLoadFile failed; ModifyOtherObjects in ACL denied resource race to access race-comtebay [22:30:47] WARNING: Error while loading race-comtebay: no meta.xml [22:30:47] INFO: Error loading map
×
×
  • Create New...