Archiv verlassen und diese Seite im Standarddesign anzeigen : Roleplay
sebo1992
31.05.2008, 09:19
Hallo,
ich suche ein Roleplay Mod das heisst RP08
Danke.
Hallo,
ich suche ein Roleplay Mod das heisst RP08
Danke.
Meinst du den BBRoleplay Servermod? Den bekommst du nicht :gmod:
sebo1992
31.05.2008, 18:48
ja genau den wird wahrscheinlich selbst gecodet sein weil ich habe gerade DarkRP und das ist ****
sebo1992
01.06.2008, 09:24
Wo soll ich bei dem DarkRP in der admins.lua meine steam id eintragen
--**** 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
don-banane
01.06.2008, 09:32
In der Zeile
AddAdmin( "HierDeineSteamID" ); --Add them As an admin In the DarkRP Admin Commands.
sebo1992
01.06.2008, 15:16
Wie heisst die Datei wo ich das F2 Menu verändern kann ?
Schau doch einfach mal nach in den LUA Daten. Ein wenig selbst suchen lassen wir dich auch.
Powered by vBulletin® Version 4.2.2 Copyright ©2025 Adduco Digital e.K. und vBulletin Solutions, Inc. Alle Rechte vorbehalten.