Sie sind nicht angemeldet.

1

Samstag, 1. Januar 2011, 23:50

Auto Chatter hilfe

Hallo,
Ich habe einen eigen Gameserver und dort würde ich gerne ein paar Standartnachrichten die Automatisch in nach einigen Minuten in den Chat geschrieben werden einfügen. Als Beispiel "Unsere Admins Sind...." und das halt jede 2-3 Minuten ich glaube ihr kennt das.

Meine Frage:
Wie geht das?, Was brauche ich dazu? Und wie baue ich das ein (eine Anleitung dazu wäre nicht schlecht)

Schonmal vielen dank für die hilfreichen Antworten

lg

General_V

Super Moderator

Beiträge: 1 043

Wohnort: Mönchengladbach

Beruf: Brückenkranführer / Staplerfahrer

Rootserver vorhanden: Nein

  • Nachricht senden

2

Sonntag, 2. Januar 2011, 00:04

Re: Auto Chatter hilfe

Hast du Sourcemod oder Mani Admin Installiert?

Für Sourcemod nimmste diese Plugin

Bei Mani Admin kannste das in der mani_server.cfg einstellen
--> cstrike/cfg/mani_server.cfg

Spoiler Spoiler

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// *****************************************************************************
// Module 01: Adverts
//
// Desc : Adverts can be used in game using this module in conjuction with the
//        adverts.txt file in the /cfg/mani_admin_plugin/ folder
// *****************************************************************************

// Adverts 1 = on, 0 = off
mani_adverts 0

// Time between adverts displayed
mani_time_between_adverts 120

// Allow adverts in chat area of screen
mani_adverts_chat_area 1

// Allow adverts in top left corner of screen (these can be coloured)
mani_adverts_top_left 1

// Sets colour of adverts, here I've set it to blue

// Red component colour of adverts (255 = max)
mani_advert_col_red 0

// Green component colour of adverts (255 = max)
mani_advert_col_green 0

// Blue component colour of adverts (255 = max)
mani_advert_col_blue 255

// This setting allows you to specify whether everyone can see adverts
// or only dead players. 0 = All players whether dead or alive, 1 = Dead only
mani_advert_dead_only 0

// Show adverts in the hint text area (at the bottom middle in CSS)
// 1 = enabled, 0 = disabled
mani_adverts_bottom_area 1

// Disable the "Swish" sound for hints on the orange box game.
// 0 = disable the sound, 1 = enable the sound
mani_hint_sounds 0


die Mani Adverts datei findest du hier:
--> cstrike/cfg/mani_admin_plugin/adverts.txt

Spoiler Spoiler

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// *****************************************************************************
//    Plugin    : Mani Admin Plugin
//
//   Filename   : adverts.txt
//
// Last Updated : 2009/07/21
//
// Description  : Adverts played ingame if mani_adverts 1 is
//                set in the mani_server.cfg
// *****************************************************************************
//
//
// The following info tokens are available:
// {NEXTMAP}      = displays the next map that will be played
// {CURRENTMAP}   = displays the name of the current map
// {TICKRATE}     = displays the servers tickrate
// {FF}           = displays the status of Friendly fire
// {THETIME}      = displays the current server time
// {SERVERHOST}   = displays the serverhost (if info is available)
//
//
// The following colour tokens are available: (note: They will only work in
// the top left corner, not in the chat area)
// {RED}
// {BLUE}
// {GREEN}
// {MAGENTA}
// {BROWN}
// {GREY}
// {CYAN}
// {YELLOW}
// {ORANGE}
// {WHITE}
// {PINK}
//
//
// Examples:
Hier kannste deine Werbung rein schreiben
TEXT1
TEXT2
TEXT3
usw.

3

Sonntag, 2. Januar 2011, 00:08

Re: Auto Chatter hilfe

ja die sind drauf

€: Funzt vielen dank

lg

General_V

Super Moderator

Beiträge: 1 043

Wohnort: Mönchengladbach

Beruf: Brückenkranführer / Staplerfahrer

Rootserver vorhanden: Nein

  • Nachricht senden

4

Sonntag, 2. Januar 2011, 11:29

Re: Auto Chatter hilfe

Alles klar ;)