Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public OnFilterScriptInit()
- {
- SetTimer("hostname",3000,1);
- SetTimer("mapname",3000,1);
- SetTimer("gamemode",3000,1);
- return 1;
- }
- forward hostname();
- public hostname()
- {
- new var = random(5);
- switch (var)
- {
- case 0: SendRconCommand("hostname [DZ]Digital Zone RolePlay[dzone-gaming.webs.com]");
- case 1: SendRconCommand("hostname [DZ]Digital Zone RolePlay |0.3z|");
- }
- }
- forward mapname();
- public mapname()
- {
- new var = random(5);
- switch (var)
- {
- case 0: SendRconCommand("mapname Los Santos");
- case 1: SendRconCommand("mapname San Fierro");
- case 2: SendRconCommand("mapname Las Venturas");
- case 3: SendRconCommand("mapname Ostrvo");
- case 4: SendRconCommand("mapname Maps by Rake");
- }
- }
- forward gamemode();
- public gamemode()
- {
- new var = random(2);
- switch (var)
- {
- case 0: SendRconCommand("gamemodetext ~.:[DZ:RP v1.1]:.~ ");
- case 1: SendRconCommand("gamemodetext Update Odradjen ");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement