[AMXX] Galileo 1.1.290 (rtv)
Lehekülg 1, lehekülgi kokku 1 • Share
- Tonight
- Liitus : 19/02/2012
Postitusi : 18000
Galileo 1.1.290
♦ Kirjeldus: Galileo on plugin, mis kontrollib serveris mapivahetust.
♦ Versioon: 1.1.290
♦ Autor: Brad
• Serveri commandid:
gal_startvote - alustab hääletust
gal_createmapfile failinimi - koostab faili serveris olevatest mappidest
NB! Lisa kõik mapid mapcycle.txt faili, sest sealt kontrollitakse nomineeritavaid mappe. Teine võimalus on muuta cvari: gal_nom_mapfile * ning asi toimib automaatselt.
• Valikud (cvarid):
• Paigaldamine:
Failide asukohad:
\scripting\galileo.sma
\configs\galileo\galileo.cfg
\configs\galileo\prefixes.ini
\data\galileo\
\data\lang\galileo.txt
\plugins\galileo.amxx
Seejärel ava plugins.ini ning keela pluginad nextmap.amxx ja mapchooser.amxx:
;nextmap.amxx
;mapchooser.amxx
Lisa plugins.ini'sse galileo.amxx
DOWNLOAD:
♦ Kirjeldus: Galileo on plugin, mis kontrollib serveris mapivahetust.
♦ Versioon: 1.1.290
♦ Autor: Brad
• Serveri commandid:
gal_startvote - alustab hääletust
gal_createmapfile failinimi - koostab faili serveris olevatest mappidest
NB! Lisa kõik mapid mapcycle.txt faili, sest sealt kontrollitakse nomineeritavaid mappe. Teine võimalus on muuta cvari: gal_nom_mapfile * ning asi toimib automaatselt.
• Valikud (cvarid):
- Ava:
- Kood:
// Galileo Configuration File
// $Revision: 286 $ $Date: 2009-02-18 21:49:33 -0500 (Wed, 18 Feb 2009) $
echo Executing Galileo (GAL) Configuration File
////////////////////////////////////////////////////////////////////////
// Allowing an extension of the current map's time limit will add an //
// "extend the map" option to map votes which, if the option wins, //
// will increase the time limit by a predetermined amount, letting //
// players stay on the current map longer. //
////////////////////////////////////////////////////////////////////////
// Specifies the maximum number of minutes a map can be played, if it
// has been extended. A value less than mp_timelimit will not let the
// map be extended.
amx_extendmap_max 90
// Specifies the number of minutes a map will be extended each time
// the "Extend Map" option wins the map vote.
amx_extendmap_step 15
////////////////////////////////////////////////////////////////////////
// There are two standard HL1 map related commands that you may not //
// want to function normally, if at all, when using this plugin, so //
// as to avoid conflicts of map voting procedures. //
////////////////////////////////////////////////////////////////////////
// Indicates how the standard HL1 "votemap" command should function.
// 0 - disable
// 1 - behave normally
gal_cmd_votemap 0
// Indicates how the standard HL1 "listmaps" command should function.
// 0 - disable
// 1 - behave normally
// 2 - behave the same as the "gal_listmaps" command (galileo default)
gal_cmd_listmaps 2
////////////////////////////////////////////////////////////////////////
// Banning recently played maps means that the last several maps that //
// have been played can not be nominated or otherwise placed in the //
// map vote. This ensures that a map can not be played over and over //
// again at the expense of playing a variety of other maps. //
////////////////////////////////////////////////////////////////////////
// Specifies how many of the most recent maps are disallowed from a
// map vote. A value of 0 will disable this feature.
gal_banrecent 3
// Indicates the style in which the recent maps are displayed when a
// player uses the "recentmaps" say command.
// 1 - all maps on one line
// 2 - each map on a separate line
gal_banrecentstyle 1
////////////////////////////////////////////////////////////////////////
// Rocking the vote is a way players can indicate their desire to //
// start an early map vote to change maps. Once enough players have //
// rocked it, a vote will begin. //
////////////////////////////////////////////////////////////////////////
// Indicates which say commands can be used to rock the vote.
// The flags are additive. A value of 0 will disable this feature.
// 1 - standard "rockthevote" command
// 2 - shorthand "rtv" command
// 4 - dynamic "rockthe<anything>vote" command (allows a player to type
// any one word (i.e. no spaces) that starts with "rockthe" and ends
// with "vote". Some examples might be: "rockthedamnvote",
// "rockthesillylittlevote", or "rockthefreakingvote". The total
// length of the word can not be longer than 31 characters. That
// leaves 20 characters for creativeness once you factor in the
// lengths of "rockthe" and "vote")
gal_rtv_commands 3
// Specifies the number of minutes after a map starts that players
// have to wait before they can rock the vote. When a single player
// is on the server, that player can rock the vote at any time,
// regardless of this setting.
gal_rtv_wait 10
// Specifies the ratio of players that need to rock the vote before a
// vote will be forced to occur. When a single player is on the server,
// that player can rock the vote and start an immediate vote.
gal_rtv_ratio 0.60
// Specifies how often, in minutes, to remind everyone how many more
// rocks are still needed, after the last rock has been made.
// A value of 0 will disable this feature.
gal_rtv_reminder 2
////////////////////////////////////////////////////////////////////////
// Nominations can be used to let players nominate maps they would //
// like included in the next map vote. Depending on how many maps //
// have been nominated, it is possible that not all nominations will //
// make it into the next vote. //
////////////////////////////////////////////////////////////////////////
// Specifies how many nominations each player can make.
// There is a hard cap defined, MAX_NOMINATION_CNT, that is set to 5
// in the SMA. It can be changed, if needed.
// This CVAR needs to be set equal to or less than the hard cap.
// A value of 0 will disable this feature.
gal_nom_playerallowance 2
// Specifies the file to use which holds the names of the maps, listed
// one per line, that players can nominate. Use * for all maps in the
// server's maps folder.
// You can specify a relative path before the filename, relative from
// your gamemod folder (i.e. /addons/amxmodx/configs/mymapcycle.txt).
gal_nom_mapfile mapcycle.txt
// Indicates if the ./amxmodx/configs/galileo/prefixes.ini file should
// be used to attempt to match map names if the player's entered
// text doesn't match any.
gal_nom_prefixes 0
// Specifies how many of the nominations made will be
// considered for use in the next map vote.
// A value of 0 means all the nominated maps will be considered.
gal_nom_qtyused 0
////////////////////////////////////////////////////////////////////////
// Runoff voting happens when none of the normal vote options receive //
// over 50% of a given vote. The two options with the highest vote //
// counts will be in the runoff vote. //
////////////////////////////////////////////////////////////////////////
// Indicates whether to allow runoff voting or not.
// 0 - disable runoff voting
// 1 - enable runoff voting
gal_runoff_enabled 1
// Specifies the number of seconds the runoff vote should last.
gal_runoff_duration 15
////////////////////////////////////////////////////////////////////////
// Weighted votes allows admins to have their vote counted as more //
// than a regular player's vote. //
////////////////////////////////////////////////////////////////////////
// Specifies how many votes a single admin vote should count as.
// A value of 0 or 1 will disable this feature.
gal_vote_weight 2
// Specifies the standard access flags needed to have weighted votes.
// You can specify multiple flags.
gal_vote_weightflags y
////////////////////////////////////////////////////////////////////////
// Ending a map on a new round after time has expired, for round- //
// based mods, is a much nicer way of ending the current map than the //
// standard HL1 way, which is to suddenly end the map the second time //
// runs out. //
////////////////////////////////////////////////////////////////////////
// Indicates when a map should end when time runs out.
// 0 - end immediately when time runs out
// 1 - when time runs out, end after the current round
gal_endonround 1
////////////////////////////////////////////////////////////////////////
// By showing the status of the vote, you allow players to see how //
// many votes the various choices received. //
////////////////////////////////////////////////////////////////////////
// Indicates when the vote progress should be shown to a player.
// A value of 0 disables this feature.
// 0 - never
// 1 - after player has voted
// 2 - after the vote ends
gal_vote_showstatus 1
// Indicates how to show the progress of a vote.
// 1 - as vote count
// 2 - as percentage of all votes cast
gal_vote_showstatustype 2
////////////////////////////////////////////////////////////////////////
// Server restarts could be due to a benign reason or could be due to //
// a map that just crashed the server. In any case, you can specify //
// what happens when the server restarts. //
////////////////////////////////////////////////////////////////////////
// Indicates which action to take when it is detected
// that the server has been restarted.
// 0 - stay on the map the server started with
// 1 - change to the map that was being played when the server was reset
// 2 - change to what would have been the next map had the server not
// been restarted (if the next map isn't known, this acts like 3)
// 3 - start an early map vote after the first two minutes
// 4 - change to a randomly selected map from your nominatable map list
gal_srv_start 0
////////////////////////////////////////////////////////////////////////
// Some people like to stick to their defined map cycle unless a vote //
// is started in the meantime. Other people like to always have a //
// vote near the end of the map to decide what the next map will be. //
////////////////////////////////////////////////////////////////////////
// Indicates whether there should be a vote near the end
// of the map to decide what the next map will be.
gal_endofmapvote 1
////////////////////////////////////////////////////////////////////////
// Paginating the map listings displayed from the gal_listmaps //
// console command will prevent players from getting kicked when you //
// are listing a large number of maps. When paginated, the listings //
// will only display a portion of the total map list at a time. //
////////////////////////////////////////////////////////////////////////
// Specifies how many maps per "page" to show when using
// the gal_listmaps console command.
// Setting it to 0 will not paginate the map listing.
// Pagination will be in the style of the amx_help command.
gal_listmaps_paginate 10
////////////////////////////////////////////////////////////////////////
// Primary voting is what most people generally think of when they //
// think of starting a vote for a new map. It's just your standard //
// map vote. //
////////////////////////////////////////////////////////////////////////
// Specifies the number of maps players can choose from during the vote.
// The number of maps must be between 2 and 8.
gal_vote_mapchoices 5
// Specifies the number of seconds the vote should last.
gal_vote_duration 15
// Specifies the file to use which either holds the names of the maps,
// one per line, that the vote will be filled with or is used in the
// map group feature to specify how many maps to use from each group.
// You can specify a relative path before the filename, relative from
// your gamemod folder (i.e. /addons/amxmodx/configs/mymapcycle.txt).
gal_vote_mapfile mapcycle.txt
// Indicates whether the maps being added, after nominations have been
// added to a vote, should have unique map prefixes from those already
// in the vote.
gal_vote_uniqueprefixes 0
////////////////////////////////////////////////////////////////////////
// The vote expiration countdown begins display a timer, to players //
// that haven't voted, when there are 10 seconds left in the current //
// vote. The timer counts down from 10 to 0, at which point the vote //
// will be over. //
////////////////////////////////////////////////////////////////////////
// Indicates whether a vote expiration countdown should be displayed.
// 0 - do not show the countdown
// 1 - show the countdown
gal_vote_expirationcountdown 1
////////////////////////////////////////////////////////////////////////
// When the player's choice is announced, everyone on the server is //
// shown what every other player's selection was. //
////////////////////////////////////////////////////////////////////////
// Indicates whether to announce each player's choice.
// 0 - keep the player's choice private
// 1 - announce the player's choice
gal_vote_announcechoice 1
////////////////////////////////////////////////////////////////////////
// You may have a lot of maps but only a few are sure to attract a //
// lot of players. When the server is empty, you may want the server //
// to change to those maps. //
////////////////////////////////////////////////////////////////////////
// Specifies how many minutes to wait, when the server is empty, before
// changing to an alternate empty-server map cycle.
// A value of 0 disables this feature.
gal_emptyserver_wait 0
// Specifies the file which contains a listing of maps, one per line,
// to be used as the map cycle when the server is empty.
// You can specify a relative path before the filename, relative from
// your gamemod folder (i.e. /addons/amxmodx/configs/mymapcycle.txt).
gal_emptyserver_mapfile emptycycle.txt
////////////////////////////////////////////////////////////////////////
// There will be words spoken during certain events to reinenforce, //
// in a player's mind, what is happening. You may choose to mute any //
// that you would rather not have spoken. //
////////////////////////////////////////////////////////////////////////
// Indicates if any sounds should be muted during the various events in
// which they'd normal be spoken.
// The flags are additive. A value of 0 will not mute any of the sounds.
// 1 - "get ready to choose a map"
// 2 - "7", "6", "5", "4", "3", "2", "1"
// 4 - "time to choose"
// 8 - "runoff voting is required"
gal_sounds_mute 0
• Paigaldamine:
Failide asukohad:
\scripting\galileo.sma
\configs\galileo\galileo.cfg
\configs\galileo\prefixes.ini
\data\galileo\
\data\lang\galileo.txt
\plugins\galileo.amxx
Seejärel ava plugins.ini ning keela pluginad nextmap.amxx ja mapchooser.amxx:
;nextmap.amxx
;mapchooser.amxx
Lisa plugins.ini'sse galileo.amxx
DOWNLOAD:
- Attachments
Viimati muutis seda Tonight (18.12.14 22:13). Kokku muudetud 1 kord
- Tehnik aKKomeet
- Liitus : 28/03/2013
Postitusi : 453
sellel kirjaviga sees
Lisa plugins.ini'sse gaileo.amxx
Lisa plugins.ini'sse gaileo.amxx
- Tonight
- Liitus : 19/02/2012
Postitusi : 18000
ParandatudTehnik aK kirjutas:sellel kirjaviga sees
Lisa plugins.ini'sse gaileo.amxx
- Sulipoiss PeeterJuunior
- Liitus : 10/01/2015
Postitusi : 28
Ma ei saa neid peale toppida ??? miks
- Tonight
- Liitus : 19/02/2012
Postitusi : 18000
Mida sa ei saa peale toppida? Pluginat? Ma pole pendlimees.Sulipoiss Peeter kirjutas:Ma ei saa neid peale toppida ??? miks
- Sulipoiss PeeterJuunior
- Liitus : 10/01/2015
Postitusi : 28
Viga: File transfer failed
Staatus: Retrieving directory listing of "/home/roman/cs27015/cs/cstrike/addons/amxmodx/configs"...
Staatus: Listing directory /home/roman/cs27015/cs/cstrike/addons/amxmodx/configs
Staatus: Directory listing of "/home/roman/cs27015/cs/cstrike/addons/amxmodx/configs" successful
Staatus: Retrieving directory listing of "/home/roman/cs27015/cs/cstrike/addons/amxmodx/configs"...
Staatus: Listing directory /home/roman/cs27015/cs/cstrike/addons/amxmodx/configs
Staatus: Directory listing of "/home/roman/cs27015/cs/cstrike/addons/amxmodx/configs" successful
- Tonight
- Liitus : 19/02/2012
Postitusi : 18000
Tee configs kausta käsitsi galileo kaust ning viska siis failid sinna.
\configs\galileo\galileo.cfg
\configs\galileo\prefixes.ini
\configs\galileo\galileo.cfg
\configs\galileo\prefixes.ini
- Sulipoiss PeeterJuunior
- Liitus : 10/01/2015
Postitusi : 28
Viga: Directory /home/roman/cs27015/cs/cstrike/addons/amxmodx/configs/Galileo: no such file or directory
Viga: Kataloogi nimekirja vastuvõtt ebaõnnestus
Viga: Kataloogi nimekirja vastuvõtt ebaõnnestus
- Tonight
- Liitus : 19/02/2012
Postitusi : 18000
Kui usaldad, siis saada mulle postkasti enda FTP andmed. Kui ei, siis tee screenshot enda configs kaustast ja FTP õigustest.
- Sulipoiss PeeterJuunior
- Liitus : 10/01/2015
Postitusi : 28
Võta steam vastu
- SukiJuunior
- Liitus : 25/03/2015
Postitusi : 18
Tegin eesti keelse lang faili ka võid lisada sinna kui vajalikuks pead.
- Spoiler:
[et]
GAL_CANCEL_FAIL_INPROGRESS = Tühistamine ebaõnnestus, kuna vote juba käivitati.
GAL_CANCEL_FAIL_SOMEONEELSE = Tühistamine ebaõnnestus, kuna ^"%s^" nomineeris %s.
GAL_CANCEL_FAIL_VOTEOVER = Tühistamine ebaõnnestus, kuna vote tulemus on juba otsustatud.
GAL_CANCEL_FAIL_WASNOTYOU = Tühistamine ebaõnnestus, kuna sa pole ^"%s^" nomineerinud.
GAL_CANCEL_SUCCESS = Järgnevad mapid ei ole enam nomineeritud: %s
GAL_CHANGE_NEXTROUND = Map vahetub peale roundi lõppu.
GAL_CHANGE_TIMEEXPIRED = Ajalimiit aegus.
GAL_CHOICE_EXTEND = Sa hääletasid selle mapi pikendamise poolt.
GAL_CHOICE_EXTEND_ALL = %s hääletas selle mapi pikendamise poolt.
GAL_CHOICE_MAP = Sa valisid ^"%s^".
GAL_CHOICE_MAP_ALL = %s valis ^"%s^".
GAL_CHOICE_NONE = Sa otsustasid sellest votest mitte osa võtta.
GAL_CHOICE_NONE_ALL = %s otustas sellest votest mitte osa võtta.
GAL_CHOICE_STAY = Sa hääletasid selle mapi jätmise poolt.
GAL_CHOICE_STAY_ALL = %s hääletas selle mapi jätmise poolt.
GAL_CHOOSE = Vali järgmine map
GAL_CMD_CREATEFILE_USAGE1 = Usage: gal_createmapfile
GAL_CMD_CREATEFILE_USAGE2 = The file will be created in ./amxmodx/configs/galileo
GAL_CMD_NOMS = * Sa võid kasutada 'noms' commandi 'nominations' asemel, kui sa soovid.
GAL_CMD_RTV = * Sa võid kasutada 'rtv' commandi 'rockthevote' asemel, kui sa soovid.
GAL_CREATIONFAILED = Could not create ^"%s^".
GAL_CREATIONSUCCESS = Successfully created ^"%s^" (%i maps).
GAL_DISABLED = Selline käsklus on eemaldatud.
GAL_FILLER_NOTFOUND = Could not open ^"%s^" to load maps used to fill the vote.
GAL_GRP_FAIL_NOCOUNTS = No group counts could be found in ^"%s^" for the vote fill process.
GAL_GRP_FAIL_TOOMANY = More than 8 filler group map counts were found in ^"%s^". Only the first 8 were loaded.
GAL_LISTMAPS_MORE = Kasuta '%s %i' v6i '%s *' kui tahad rohkem näha
GAL_LISTMAPS_SHOWING = Mapid %i - %i kogu mappide arvust %i
GAL_LISTMAPS_TITLE = Nomineeritavad mapid
GAL_MAPS_FILEMISSING = Could not open ^"%s^".
GAL_MAPS_FOLDERMISSING = Could not find ^"maps^" directory.
GAL_MAP_RECENTMAP = Eelmine map
GAL_MAP_RECENTMAPS = Eelmised mapid
GAL_MATCHING = Matching: %s
GAL_MATCH_CURRENTMAP = (praegune map)
GAL_MATCH_NOMINATED = (nomineeritud)
GAL_MATCH_TOORECENT = (liiga hiljutine)
GAL_NEXTMAP = Järgmine map on ^"%s^".
GAL_NEXTMAP_UNKNOWN = [puudub]
GAL_NEXTMAP_VOTING = [vote käib]
GAL_NOMINATEDBY = (nomineeritud %s poolt)
GAL_NOMINATIONS = NOMINATSIOONID
GAL_NOMS_NOTFOUND = Could not open ^"%s^" to load maps that can be nominated.
GAL_NOM_FAIL_ALREADY = Nominatsioon ebaõnnestus, kuna; you have already nominated ^"%s^".
GAL_NOM_FAIL_CURRENTMAP = Nominatsioon ebaõnnestus, kuna ^"%s^" on praegune map.
GAL_NOM_FAIL_INPROGRESS = Nominatsioon ebaõnnestus, kuna vote juba käivitati.
GAL_NOM_FAIL_NOMATCHES = Nominatsioon ebaõnnestus, kuna ükski map ei sisalda ^"%s^".
GAL_NOM_FAIL_SOMEONEELSE = Nominatsioon ebaõnnestus, kuna ^"%s^" on juba nomineeritud %s poolt.
GAL_NOM_FAIL_SOMEONEELSE_HLP = Sa saad kirjutada ^"nominations^", et näha nimekirja praegustest nominatsioonidest.
GAL_NOM_FAIL_TOOMANY = Nominatsioon ebaõnnestus, kuna sa oled juba nomineerinud %i mapi (%s).
GAL_NOM_FAIL_TOOMANY_HLP = Et nomineerida teist mapi, pead sa kõigepealt tühistama mõne oma nominatsiooni.
GAL_NOM_FAIL_TOORECENT = Nominatsioon ebaõnnestus, kuna ^"%s^" alles mängiti hiljuti.
GAL_NOM_FAIL_TOORECENT_HLP = Sa saad kirjutada ^"recentmaps^", et näha hiljuti mängitud mape.
GAL_NOM_FAIL_VOTEOVER = Nominatsioon ebaõnnestus, kuna vote tulemus on juba otsustatud.
GAL_NOM_GOOD_HLP = Et tühistada oma nominatsiooni, kirjuta kas ^"^" või ^"cancel ^".
GAL_NOM_MATCHES = Rohkem kui üks map sisaldas endas ^"%s^". Palun vali õige map.
GAL_NOM_MATCHES_MAX = Vasteid võis olla rohkem kui %i. Ainult esimesed %i neist kuvatakse.
GAL_NOM_SUCCESS = %s nomineeris ^"%s^".
GAL_OPTION_EXTEND = Pikendada ^"%s^" %i Minutit
GAL_OPTION_NONE = Ei taha valida
GAL_OPTION_STAY = Stay Here
GAL_PREFIXES_NOTFOUND = Could not open ^"%s^" to load map prefixes.
GAL_PREFIXES_TOOMANY = More than %i map prefixes were found in ^"%s^".
GAL_RESULT = Vote tulemus
GAL_RESULT_TIED1 = %i valikut jäid viiki. Kaks nendest valitakse suvaliselt ja tuleb uus hääletus.
GAL_RESULT_TIED2 = The first place choice and a randomly selected, of %i, second place choice will be in the vote.
GAL_ROCK_ENOUGH = Piisavalt mängijaid on kirjutanud RTV, seega nüüd vote käivitatakse.
GAL_ROCK_FAIL_ALREADY = Sa oled juba RTV kirjutanud.
GAL_ROCK_FAIL_INPROGRESS = Vote on juba käivitatud.
GAL_ROCK_FAIL_PENDINGVOTE = Vote algab juba kahe minuti pärast.
GAL_ROCK_FAIL_TOOSOON = Sa pead veel ootama umbes %i minutit enne kui sa saad kirjutada RTV.
GAL_ROCK_FAIL_VOTEOVER = Vote tulemus on juba otsustatud.
GAL_ROCK_NEEDMORE = %i peavad veel kirjutama ^"rockthevote^", et käivitada votet.
GAL_ROCK_SUCCESS = Sa hääletasid vote alustamiseks.
GAL_RUNOFF_REQUIRED = Teist hääletust on veel vaja, kuna ükski valik ei kogunud üle 50%% hääli.
GAL_STANDARD_NOTFOUND = Could not open ^"%s^" to load standard maps.
GAL_STANDARD_TOOMANY = There are more than %i standard maps defined for mod ^"%s^".
GAL_STANDARD_UNKNOWNMOD = No standard maps have been defined for mod ^" ^".
GAL_TIMELEFT = sekundit järele jäänud
GAL_VOTE_COUNTDOWN = Hääletus algab %i sekundi pärast...
GAL_VOTE_EARLY = Early map vote will begin within 2 minutes due to the server restart.
GAL_VOTE_ENDED = Vote sai läbi.
GAL_VOTE_INPROGRESS = Vote on juba käivitatud.
GAL_VOTE_NOMAPS = Vote creation failed; no maps found.
GAL_VOTE_WEIGHTED = Sinu häält loetakse kui %i.
GAL_WINNER_EXTEND = Praegust mapi pikendatakse %i minutiks.
GAL_WINNER_RANDOM = Keegi ei valinud. Järgmiseks mapiks valiti suvaliselt ^"%s^".
GAL_WINNER_STAY = Me jääme siia.
GAL_WINNER_TIED = Võitja valiti suvaliselt %i -st viiki jäänud valikust.
- Tehnik aKKomeet
- Liitus : 28/03/2013
Postitusi : 453
PANIN EESTI OMA PEALE, KUID TÄPITÄHTI POLE.
- Tehnik aKKomeet
- Liitus : 28/03/2013
Postitusi : 453
Tonight kas saaksid palun panna ,et et täpitähed ka oleks ?
- CurdyzStaar
- Liitus : 26/10/2014
Postitusi : 1070
Tehnik aK kirjutas:Tonight kas saaksid palun panna ,et et täpitähed ka oleks ?
http://www.faval.eu/t2562-amxx-galileo-1-1-290-eesti-keelne
- ѕααтαηJuunior
- Liitus : 14/10/2015
Postitusi : 18
Tervist proovisin ka, testides konsooli "gal_Startvote" puudisid täpitähe.
- CurdyzStaar
- Liitus : 26/10/2014
Postitusi : 1070
- Anddduu
- Liitus : 17/02/2015
Postitusi : 188
Mis flagidega inimestel on "gal_startvote" õigused?
- Tonight
- Liitus : 19/02/2012
Postitusi : 18000
ADMIN_MAP ehk flag f.Anddduu kirjutas:Mis flagidega inimestel on "gal_startvote" õigused?
- siim944Algaja
- Liitus : 09/05/2015
Postitusi : 3
Tere!
Mis värk on, et see ütleb koguaeg, et peab 10 min ootama, kuni rtv saaks kasutada.
See aeg ei liigu ja ma olen üksinda serveris kuigi see peaks kohe lastma mul rtv teha, kuna ma olen ju üksinda?
Mis värk on, et see ütleb koguaeg, et peab 10 min ootama, kuni rtv saaks kasutada.
See aeg ei liigu ja ma olen üksinda serveris kuigi see peaks kohe lastma mul rtv teha, kuna ma olen ju üksinda?
- Tonight
- Liitus : 19/02/2012
Postitusi : 18000
Kui on õigesti paigaldatud, siis ei saa probleem olla selles pluginas.
Vaata, et sul mingi teine plugin ei kontrolliks mapivahetust või ajalimiiti.
// Specifies the number of minutes after a map starts that players
// have to wait before they can rock the vote. When a single player
// is on the server, that player can rock the vote at any time,
// regardless of this setting.
gal_rtv_wait 10
Vaata, et sul mingi teine plugin ei kontrolliks mapivahetust või ajalimiiti.
Soovid vestluses osaleda?
Selleks logi sisse või tee endale kasutaja.
Lehekülg 1, lehekülgi kokku 1
Permissions in this forum:
Sa ei saa vastata siinsetele teemadele