Jump to content

Mefisto_PL

Members
  • Posts

    460
  • Joined

  • Last visited

Everything posted by Mefisto_PL

  1. Tak jakbyś Tostuch nie ogarnął, bo Cię znam.. chodzi o to, żebyś ustawił graczowi dane np. przy wejściu na serwer, bo aktualnie ta dana jest pusta.
  2. Ehh.. zarazem jest to zaleta i wada polskiej sceny, że tak szybko rozwijają się gamemode'y.. niestety w wielu projektach jest sporo zaciągane z zagranicznych serwerów, ale mniejsza z tym. Kolejny serwer "wywalony" w ilości skryptów, ( za pewne też jakości, nie mogę tego stwierdzić, bo sam też tam nie grałem, no ale ciekawie wygląda ) tak samo też jak na samą liczbę graczy, jest to dobry wynik. Jest gdzie grać, wszystko spoko, cacy i wgl. No niestety nie pod każdym względem, bo to że szybko takie serwery się rozwijają, jest sporym minusem dla graczy, którzy też mają plany ( a niektórzy nawet marzenia ;o ) powiązane z własnym serwerem, lecz nie mogą, bo myślą, że mogą nie dorównać takiemu serwerowi. Niektórzy nawet by potrafili dorównać, ba nawet zrobić lepszy tylko trzeba mieć wyobraźnie i umiejętności. Według mojej opinii, polska scena MTA wysiada. Zagraniczne serwery rozwijały się powoli, a teraz zobaczcie, jeden serwer dorównuje drugiemu, zbierają się ekipy, tworzą serwery z mega wy*ebanymi gamemode'ami. Potem polska scena podkrada pomysły z zagranicy, przerabia to na własną ideę ( no oczywiście nic do tego nie mam, no bo wymyślić coś samemu nie zawsze jest łatwo ), czasem nawet w lepszy sposób. Wiele osób już minąłem, które miały plany i zadatki na dobry serwer, lecz się poddawały. To mnie boli w tym wszystkim. Oczywiście, życzę wam jak najlepiej i żeby serwer wam wypalił w 100% Tylko ludzie nie poddawajcie się jak polska scena podnosi sama poprzeczkę
  3. function poprzedniSkin() wybranySkin = wybranySkin-1 setElementModel(manekin, wybranySkin) end Tak jakbyś nie ogarnął ;d
  4. No, it's not. I saw it in SAMP Okey.. but where is clothes model ID ( as object )? I want to add all of the clothes.
  5. That will be cool, if you can add CJ Clothes to every skin. In SAMP it's possible so why no here?
  6. Hi guys. I have a question.. How to make a script that get amount(idk it's correct ) online players from another server?
  7. Trochę odkopię, ale tutaj masz usunięcie wszystkich elementów standardowej mapy Chyba umiesz sobie zrobić z tego funkcję. for i=700,20000 do removeWorldModel(i,10000,0,0,0) end setOcclusionsEnabled(false) setWaterLevel(-5000)
  8. Generalnie nie, ale przecież możesz odlecieć daleko za mapę i tam zrobić spawn itd.
  9. Maybe it's working.. but I've create an image, which move from menu1 so it must be on the top , but text must be on menu1.
  10. 1. menu1 is from beginning to end of screen. 2. Madex I don't catch what did you say 3. If I do that when I click on menu1 then text will disappear.
  11. Hello guys. I have a one big problem.. I've create a gui-label which is attached to "menu1", but when I attach then it doesn't showed. When it doesn't attached then it's showed. Help me plz. ( namec is explained in code which I don't want to show you ) local menu1 = guiCreateStaticImage ( 0, 0, 1, 0.04, "images/pasek1.png", true ) guiSetVisible ( menu1, true ) local text = guiCreateLabel ( 0, 0, 0.15, 0.1, "Welcome ".. namec .. " !", true, menu1 ) guiSetFont ( text, "default-bold-small" )
  12. Jak już chcesz coś sprzedać to daj zrzuty ekranu, bo taki gamemode można zrobić z samych podstaw na wiki , bądź prostych skryptów community przerobionych, a no i bez ceny chyba nic nie sprzedasz.
  13. Jest taka możliwość, ale jest z tym dużo zachodu i pozostałby Ci taki problem że nie miałbyś dna oceanu i miałbyś po prostu w niektórych miejscach dziury które musiałbyś wypełnić wodą , wydaje mi się że i tak lepiej odlecieć 1512305 km od miasta i tam sobie porobić
  14. Hi.. I've made a script which when I enter on gui button by cursor then it play sound.. But when I enter by mouse or anything in gui then I hear a sound. addEventHandler ( "onClientMouseEnter", getRootElement(), function() for _, Ads in ipairs(getElementsByType('gui-button')) do playSoundFrontEnd ( 5 ); end end)
  15. How I think it works or how I think I must use it?
  16. Idk it is working and what I must do now.. pages = { ["Page"] = true, } function asdf ( ) for page, text in pairs ( pages ) do local row = guiGridListAddRow ( gridlist ) guiGridListSetItemText ( gridList, row, 1, page, false, false ) end end ) ///EDIT But I want to create this with xml file :C
  17. Yes, but in Memo. My fail
  18. But where is this line? guiSetText ( StripMoneyLabel, "( You don't have enough money and points ! ($500 and 50P) )" )
  19. Hello.. I have an error in my code, but idk where. When I have smaller than 50 points then guiSetText should be changed, but no.. With money it's working perfectly, but with points not.. function DanceStripGui ( ) local money = getPlayerMoney ( getLocalPlayer() ) local points = getElementData ( getLocalPlayer(), "Points" ) if ( source == StripBuyBtn ) then if ( money >= 500 ) and ( points >= 50 ) then guiSetVisible ( StripWindow, false ) showCursor ( false ) guiSetInputEnabled ( false ) takePlayerMoney ( 500 ) setCameraInterior ( 5 ) setCameraMatrix ( 2232.5283, -1108.1843, 1051, 2229.2053, -1106.5839, 1050.5828 ) showPlayerHudComponent ( "radar", false ) setTimer ( setCameraTarget, 15005, 1, getLocalPlayer() ) setTimer ( setCameraInterior, 15005, 1, 2 ) setTimer ( setElementPosition, 15000, 1, getLocalPlayer(), 1204.8, 11.665545463562, 1001 ) setTimer ( setElementInterior, 15000, 1, getLocalPlayer(), 2 ) setTimer ( showPlayerHudComponent, 15000, 1, "radar", true ) local PedSkin = getElementModel ( getLocalPlayer() ) setElementModel ( Guy, PedSkin ) else if ( money <= 500 ) and ( points <= 50 ) then guiSetText ( StripMoneyLabel, "( You don't have enough money and points ! ($500 and 50P) )" ) elseif ( money <= 500 ) then guiSetText ( StripMoneyLabel, "( You don't have enough money ! ($500) )" ) elseif ( points <= 50 ) then guiSetText ( StripMoneyLabel, "( You don't have enough points ! (50P) )" ) end end end end addEventHandler ( "onClientGUIClick", StripBuyBtn, DanceStripGui )
  20. Hello everyone ! I have a question. How to get item name ( for gridlist ) from xml file and text ( gui - edit ) when I click on item. Help me please, I search it everywhere, but I don't understand it . For example: <items> <item name="Page1" text="Test"/> <item name="Page2" text="Test1"/> </items>
  21. setElementData is hard to use in your opinion?!
  22. He want to make resource which allow to create characters for example "Derek Dickson". @To author: In my opinion you could do that with setElementData and getElementData. I think it shouldn't be hard to make.
×
×
  • Create New...