Jump to content

MrMisieQ

Members
  • Posts

    9
  • Joined

  • Last visited

Details

  • Gang
    ~[PE]~

MrMisieQ's Achievements

Newbie

Newbie (4/54)

0

Reputation

  1. Witam. Poszukuję kogoś ogarniętego kto na podstawie skryptu (panelu) stworzy mi bazę danych mysql. Skrypt jest już zrobiony i zapis do mysql jest, jednakże problem stanowi stworzenie tej bazy . Kupiłem dodatek mysql do serwera i co dalej? No właśnie, tu liczę na kogoś chętnego do pomocy. Oczywiście za wszelką pomoc jestem skłonny zapłacić + bonus ode mnie ale to na pm. Czekam na poważne oferty a nie na dzieciaka który gówno umie ale na pieniądze się rzuca. Zainteresowanym proszę o PM; dalej ewentualnie podam jakiś bardziej bezpośredni kontakt do siebie.
  2. MrMisieQ

    Map [shop]

    Hello. i found this, and i dont know why it's not working. i tried fix it but maybe i'm to weak for lua maybe anyone can help me? in gui (i see it but when i pressed this it isn't working) . . lblSetNextMapTitle = guiCreateLabel(342,189,245,16,"Set a next map",false,tabs[5]) guiLabelSetColor(lblSetNextMapTitle,255,120,0) guiLabelSetVerticalAlign(lblSetNextMapTitle,"center") guiLabelSetHorizontalAlign(lblSetNextMapTitle,"center",false) guiSetFont(lblSetNextMapTitle,"default-bold-small") lblSearchForMaps = guiCreateLabel(25,25,101,14,"Search for maps:",false,tabs[5]) guiLabelSetColor(lblSearchForMaps,255,120,0) guiLabelSetVerticalAlign(lblSearchForMaps,"center") guiSetFont(lblSearchForMaps,"default-bold-small") lblSelectedMapNameTitle = guiCreateLabel(342,97,245,16,"Selected map name:",false,tabs[5]) guiLabelSetColor(lblSelectedMapNameTitle,150,255,150) guiSetFont(lblSelectedMapNameTitle,"default-bold-small") lblSelectedMapAuthorTitle = guiCreateLabel(342,136,245,16,"Map type:",false,tabs[5]) guiLabelSetColor(lblSelectedMapAuthorTitle,150,255,150) guiSetFont(lblSelectedMapAuthorTitle,"default-bold-small") lblSelectedMapName = guiCreateLabel(342,113,245,16,"N/A",false,tabs[5]) lblSelectedMapAuthor = guiCreateLabel(342,152,245,16,"N/A",false,tabs[5]) lblMapTabLine1 = guiCreateLabel(342,309,245,27,"---------------------------------------------------------------",false,tabs[5]) guiLabelSetColor(lblMapTabLine1,255,120,0) guiLabelSetVerticalAlign(lblMapTabLine1,"center") guiLabelSetHorizontalAlign(lblMapTabLine1,"center",false) guiSetFont(lblMapTabLine1,"default-bold-small") lblMapTabLine2 = guiCreateLabel(342,173,245,16,"---------------------------------------------------------------",false,tabs[5]) guiLabelSetColor(lblMapTabLine2,255,120,0) guiLabelSetVerticalAlign(lblMapTabLine2,"center") guiLabelSetHorizontalAlign(lblMapTabLine2,"center",false) guiSetFont(lblMapTabLine2,"default-bold-small") lblMapTabLine3 = guiCreateLabel(342,81,245,16,"---------------------------------------------------------------",false,tabs[5]) guiLabelSetColor(lblMapTabLine3,255,120,0) guiLabelSetVerticalAlign(lblMapTabLine3,"center") guiLabelSetHorizontalAlign(lblMapTabLine3,"center",false) guiSetFont(lblMapTabLine3,"default-bold-small") editMapSearch = guiCreateEdit(129,23,198,21,"",false,tabs[5]) btnBuyNextMap = guiCreateButton(380,265,169,44,"Buy as next map - $4000",false,tabs[5]) . . server. function buyMap(thePlayer,mapName) local playerLevel = tonumber(loadPlayerData(thePlayer,"level")) local playerCash = tonumber(loadPlayerData(thePlayer,"cash")) if mapIsAlreadySet == false then if not (mapName == "") then if playerLevel >= mapLevel then if playerCash >= mapCost then triggerEvent("onExternalNextmapRequest",thePlayer,thePlayer,mapName) else outputChatBox("#FF6600* #FFFFFFYou don't have enough money to set a map!",thePlayer,255,255,255,true) end else outputChatBox("#FF6600* #FFFFFFYou need to be level #ABCDEF"..mapLevel.." #FFFFFFor higher to set maps!",thePlayer,255,255,255,true) end else outputChatBox("#FF6600* #FFFFFFPlease select a map from the list first!",thePlayer,255,255,255,true) end else outputChatBox("#FF6600* #FFFFFFA map is already set at the moment! Please try again later.",thePlayer,255,255,255,true) end end function resetMapSetStatus() mapIsAlreadySet = false end addEventHandler("onMapStarting",getRootElement(),resetMapSetStatus) addEvent("onScriptSetNextMap",true) addEventHandler("onScriptSetNextMap",getRootElement(), function (mapName) thePlayer = source local playerCash = tonumber(loadPlayerData(thePlayer,"cash")) savePlayerData(thePlayer,"cash",playerCash-mapCost) outputChatBox("#FFFFFFNextmap: "..getPlayerName(thePlayer).."#FFFFFF has bought a next map!",getRootElement(),255,255,255,true) outputChatBox("#FFFFFFNextmap: #FF8800"..mapName,getRootElement(),255,255,255,true) mapIsAlreadySet = true scoreboardRefresh(thePlayer) achievement31(thePlayer) end) addEvent("onRaceSetNextMap",true) addEventHandler("onRaceSetNextMap",getRootElement(), function () mapIsAlreadySet = true end) when i used other fucnktions panel (color vehicle, light, skins and more), all are working just not "map buy". and when i pressed button in gui nothink to do. and i see in this script thi, but i don't know what it's that function setElementDataOnStart(source) thePlayer = source local a = loadPlayerData(thePlayer,"everPurchasedSkin") local b = loadPlayerData(thePlayer,"everPurchasedNametagColor") local c = loadPlayerData(thePlayer,"everSetCustomVehicleColor") local d = loadPlayerData(thePlayer,"useCustomVehicleColor") local e = loadPlayerData(thePlayer,"c1") local f = loadPlayerData(thePlayer,"c2") local g = loadPlayerData(thePlayer,"c3") local h = loadPlayerData(thePlayer,"c4") local i = loadPlayerData(thePlayer,"hlcRed") local j = loadPlayerData(thePlayer,"hlcGreen") local k = loadPlayerData(thePlayer,"hlcBlue") local adminredo = loadPlayerData(thePlayer,"admin_redo") local adminnextmap = loadPlayerData(thePlayer,"admin_nextmap") setElementData(thePlayer,"everPurchasedSkin",a) setElementData(thePlayer,"everPurchasedNametagColor",b) setElementData(thePlayer,"everSetCustomVehicleColor",c) setElementData(thePlayer,"useCustomVehicleColor",d) setElementData(thePlayer,"c1",e) setElementData(thePlayer,"c2",f) setElementData(thePlayer,"c3",g) setElementData(thePlayer,"c4",h) setElementData(thePlayer,"hlcRed",i) setElementData(thePlayer,"hlcGreen",j) setElementData(thePlayer,"hlcBlue",k) setElementData(thePlayer,"admin_redo",adminredo) setElementData(thePlayer,"admin_nextmap",adminnextmap) end
  3. Hey. Not bad map and if you want add movie on forum you must delete it with link (http://ww......watch?v=) and add only youdube code (LLxjI7JOGMHzCZJoRO3_4nZg) between btw. can you send me this map? yes am leader Polish Eagles Clan. i invite you to visit our server and if you can send this map to [email protected]
  4. Hello. I wanna present my maps. v.1 [DM] MisieQ - It's Easy p.s sorry for the quality v.2 [DM] MisieQ ft. Sheldox - Everyone v.3 [DM] MisieQ - Summertime v4. Comming soon ps. My maps are only published on Polish Eagles and European Pro Gamers server.
  5. Witam. Szukałem jakieoś skrypt który by pokazywał ID kraju, lub Flage(bardziej by mi pasowało) Znalazłem to: https://community.multitheftauto.com/index.php?p=resources&s=details&id=1995 Tylko nie wiem czemu nie śmiga.. jeśli ktoś był by chętny pomóc,z góry thanks Jeśli ktoś by do tego dodał Do tabeli Flage bym był Happy
  6. MrMisieQ

    Edit Race

    Hello all. I want change it: to this: how make it? Pls help me.
  7. hmm Nie nie. nie oto.. z tym sobie poradziłem sam. http://imageshack.us/photo/my-images/200/unledgx.png/ Może teraz się wyświetli, a jeśli nie to chodzi mi o to co z lewej strony jest na Modzie Race Ranking 1.nick time 2.nick time . . . etc I dodam że np zmienione jest to na serwerze XIII oraz EPG Plikczek odpowiadający za wyświetlanie tego wbudowany jest w Gamomode'a Race nazwa pliku a właściwie dwóch: rankingboard.lua rankingboard_client.lua osobiście bawiłem się tym plikiem i próbowałem pozmieniać jednak kończyło się to crashem całego gamemodu..
  8. Wielkie Dzięki.. Dało rade.. żeby nie pisać nowego posta spytam. Jak przerobić 'RankingBoard" tak aby wyglądało to tak jak na ss a nie jak na standardowo wykupionym serwerze ;] http://img200.imageshack.us/f/unledgx.png/
  9. Witam.. wie ktoś może jak zmienić w tym skrypcie https://community.multitheftauto.com/index.php?p=resources&s=details&id=1749 żeby Nazwy graczy byly widoczne w jednolitym kolorze bez kodów RGB?
×
×
  • Create New...