Ergebnis 1 bis 4 von 4

Thema: Missing map

  1. #1

    Terminal Missing map

    Ich habe einen TTT Server, aber bei fast jeder map steht da: missing map... weiß jemand woran das liegt? es steht bei allen

  2. #2
    Avatar von LittleSnipes
    Registriert seit
    12.05.2006
    Ort
    Nicht Wuppertal

    Standard AW: Missing map

    Wo wie wer?

    Kommt das als Meldung wenn man den Server beitreten will? Dann muss der jeweilige Spieler sich die Map runterladen.

    Kommt die Meldung vom Server wenn man die Map wechseln will? Dann muss man die Map auf den Server hochladen.
    FdV - Du willst es doch auch


    garry's mod zuletzt gespielt 6. Dez. 2017

  3. #3

    Standard AW: Missing map

    Die Meldung kommt beim joinen auf den Server,aber die habe alle

  4. #4
    Avatar von CupCakeR
    Registriert seit
    29.01.2014
    Ort
    NRW, Wuppertal

    Terminal AW: Missing map

    Map auf den Server hochladen.
    Map auf den FastDL hochladen.
    In der Config die URL zum FastDL angeben und tadaaa. Kein Missing Map.

    Solltest du keinen FastDL haben dann probier es mit dem Workshop.

    Ich würde es dann so machen. Erstelle eine .lua Datei in lua/autorun

    Das komm da rein.

    Code:
    --This is a list of your server's maps which are available through the workshop
    --Each one uses the map file's name and the workshop ID
    maplist = {}
    
    maplist["ttt_community_bowling_v5a"] = "131667838"
    maplist["ttt_westwood_v4"] = "104520719"
    maplist["ttt_mc_skyislands"] = "106498411"
    --add more maps here
    
    
    local map = game.GetMap() -- Get's the current map name
    local workshopid = maplist[map] 
    -- Finds the workshop ID for the current map name from the table above
    
    if( workshopid != nil )then
    	--If the map is in the table above, add it through workshop
    	print( "[WORKSHOP] Setting up maps. " ..map.. " workshop ID: " ..workshopid )
    	resource.AddWorkshop( workshopid )
    else
    	--If not, ) then hope the server has FastDL or the client has the map
    	print( "[WORKSHOP] Not available for current map. Using FastDL instead hopefully..." )
    end
    Hoffe ich hab dir geholfen.

Ähnliche Themen

  1. Missing-Information BUG HILFE!
    Von denkdaetz im Forum Computer & Konsolen Spiele
    Antworten: 10
    Letzter Beitrag: 03.02.2010, 14:55
  2. Missing Information Mod [HL²]
    Von Gravemind im Forum Computer & Konsolen Spiele
    Antworten: 11
    Letzter Beitrag: 01.07.2008, 16:24
  3. Missing map
    Von Blood Fighter im Forum Hilfe & Support
    Antworten: 5
    Letzter Beitrag: 30.01.2008, 15:19
  4. Missing Map :/
    Von Nugiman im Forum Hilfe & Support
    Antworten: 4
    Letzter Beitrag: 07.08.2007, 21:31
  5. Missing Map
    Von BaNg-MaN im Forum Server
    Antworten: 6
    Letzter Beitrag: 23.02.2007, 20:07

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •