Ergebnis 1 bis 7 von 7

Thema: Roleplay

  1. #1

    Standard Roleplay

    Hallo,
    ich suche ein Roleplay Mod das heisst RP08
    Danke.

  2. #2
    Avatar von Airfox
    Registriert seit
    18.02.2007
    Ort
    Koblenz

    Standard AW: Roleplay

    Zitat Zitat von sebo1992 Beitrag anzeigen
    Hallo,
    ich suche ein Roleplay Mod das heisst RP08
    Danke.
    Meinst du den BBRoleplay Servermod? Den bekommst du nicht

  3. #3

    Standard AW: Roleplay

    ja genau den wird wahrscheinlich selbst gecodet sein weil ich habe gerade DarkRP und das ist ****

  4. #4

    Standard AW: Roleplay

    Wo soll ich bei dem DarkRP in der admins.lua meine steam id eintragen
    Code:
    --**** file parsing for this.
    Admins = { }
    Mayor = { }
    CP = { }
    Tool = { }
    Phys = { }
    Prop = { }
    function AddAdmin( steamid )
    	Admins[steamid] = { }
    end
    function AddMayor( steamid )
    	Mayor[steamid] = { }
    end
    function AddCP( steamid )
    	CP[steamid] = { }
    end
    function AddTool( steamid )
    	Tool[steamid] = { }
    end
    function AddPhys( steamid )
    	Phys[steamid] = { }
    end
    function AddProp( steamid )
    	Prop[steamid] = { }
    end
    -------------------------------------
    -- IGNORE EVERYTHING ABOVE THIS 
    -------------------------------------
    
    -------------------------------------
    -- ADD ADMINS, MAYORS, AND CPS BELOW!
    -------------------------------------
    -- HOW TO ADD AN ADMIN:
    -- AddAdmin( stm )
    
    -- HOW TO ADD A MAYOR
    -- AddMayor( stm )
    
    -- HOW TO ADD A CP
    -- AddCP( stm )
    
    --A STEAMID LOOKS LIKE THIS:
    -- STEAM_0:1:3903209
    
    -- HOW TO GET A STEAM ID:
    -- 1. JOIN AN INTERNET SERVER (NOT YOURS, UNLESS IT IS DEDICATED AND NON LAN)
    -- 2. TYPE status IN CONSOLE
    -- 3. IT WILL LIST STEAMIDS
    
    
    --EXAMPLE:
    
    AddAdmin( "" ); --Add them As an admin In the DarkRP Admin Commands.
    AddMayor( "" ); --They Can Become Mayor Without a vote.
    AddCP( "" ); --They Can Become CP Without a Vote
    AddTool( "" ); --They Spawn with a toolgun all the time.
    AddPhys( "" ); --They Spawn with a Physgun all the time.
    AddProp( "" ); --They Can Always Spawn props, even when rp_propspawning is 0, Admins can do this Too if it is rp_propspawning 0
    
    if( file.Exists( "DarkRP/privilege/tool.txt" ) ) then
    	local stm = string.Explode( "\n", file.Read( "DarkRP/privilege/tool.txt" ) );
    	for k, v in pairs( stm ) do
    		if not (v == "") then
    			Tool[v] = { }
    		end
    	end
    end
    
    if( file.Exists( "DarkRP/privilege/phys.txt" ) ) then
    	local stm = string.Explode( "\n", file.Read( "DarkRP/privilege/phys.txt" ) );
    	for k, v in pairs( stm ) do
    		if not (v == "") then
    			Phys[v] = { }
    		end
    	end
    end
    
    if( file.Exists( "DarkRP/privilege/admins.txt" ) ) then
    	local stm = string.Explode( "\n", file.Read( "DarkRP/privilege/admins.txt" ) );
    	for k, v in pairs( stm ) do
    		if not (v == "") then
    			Admins[v] = { }
    		end
    	end
    end
    
    if( file.Exists( "DarkRP/privilege/mayor.txt" ) ) then
    	local stm = string.Explode( "\n", file.Read( "DarkRP/privilege/mayor.txt" ) );
    	for k, v in pairs( stm ) do
    		if not (v == "") then
    			Mayor[v] = { }
    		end
    	end
    end
    
    if( file.Exists( "DarkRP/privilege/cp.txt" ) ) then
    	local stm = string.Explode( "\n", file.Read( "DarkRP/privilege/cp.txt" ) );
    	for k, v in pairs( stm ) do
    		if not (v == "") then
    			CP[v] = { }
    		end
    	end
    end
    
    if( file.Exists( "DarkRP/privilege/prop.txt" ) ) then
    	local stm = string.Explode( "\n", file.Read( "DarkRP/privilege/prop.txt" ) );
    	for k, v in pairs( stm ) do
    		if not (v == "") then
    			Prop[v] = { }
    		end
    	end
    end

  5. #5

    Standard AW: Roleplay

    In der Zeile
    Code:
    AddAdmin( "HierDeineSteamID" ); --Add them As an admin In the DarkRP Admin Commands.

  6. #6

    Standard AW: Roleplay

    Wie heisst die Datei wo ich das F2 Menu verändern kann ?

  7. #7
    €r!k
    Avatar von €r!k

    Standard AW: Roleplay

    Schau doch einfach mal nach in den LUA Daten. Ein wenig selbst suchen lassen wir dich auch.

Berechtigungen

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