Raised This Month: $51 Target: $400
 12% 

xredirect BUG!


Post New Thread Reply   
 
Thread Tools Display Modes
ThePwnt
AlliedModders Donor
Join Date: Feb 2009
Location: Denmark
Old 08-30-2009 , 11:54   Re: xredirect BUG!
Reply With Quote #11

Quote:
Originally Posted by Mordekay View Post
No, the beta version is not fixed jet.
Do another amxx cvars. IF redirect_manual is still shown as 0 you eigther have a second cvar set for this (maybe in the server.cfg) or you did not saved the file correctly.
I have saved it in amxx.cfg

Maybe i trying save it in server.cfg?
ThePwnt is offline
Mordekay
Squirrel of Fortune
Join Date: Apr 2006
Location: Germany
Old 08-30-2009 , 11:58   Re: xredirect BUG!
Reply With Quote #12

All cvars from amxmodx and it's plugins belong into the amxx.cfg or into it's specific config-file
Post your amxx.cfg
__________________

Mordekay is offline
ThePwnt
AlliedModders Donor
Join Date: Feb 2009
Location: Denmark
Old 08-30-2009 , 12:05   Re: xredirect BUG!
Reply With Quote #13

Quote:
Originally Posted by Mordekay View Post
All cvars from amxmodx and it's plugins belong into the amxx.cfg or into it's specific config-file
Post your amxx.cfg
amxx.cfg:

Code:
// AMX Mod X Configuration File
echo Executing AMX Mod X Configuration File

// Default access for all non admin players (see users.ini for access details)
//
// Default value: "z"
amx_default_access "z"

// Name of setinfo which should store a password on a client (you should change this)
// Note: Always prefix the field with an underscore (aka: "_")
// (Example: setinfo _pw "password")
//
// Default value: "_pw"
amx_password_field "_pw"

// Mode of logging to a server
// 0 - disable logging, players won't be checked (and access won't be set)
// 1 - normal mode which obey flags set in accounts
// 2 - kick all players not on list
//
// Default value: 1
amx_mode 1

// Show admins activity
// 0 - disabled
// 1 - show without admin name
// 2 - show with name
//
// Default value: 2
amx_show_activity 1

// Frequency in seconds and text of scrolling message
//
// Default value: "Welcome to %hostname% -- This server is using AMX Mod X" 600
//amx_scrollmsg "Welcome to %hostname% -- This server is using AMX Mod X" 600

// Center typed colored messages (last parameter is a color in RRRGGGBBB format)
//
// Default values: "Welcome to %hostname%" "000255100"
//                 "This server is using AMX ModX\nVisit http://www.amxmodx.org" "000100255"
//amx_imessage "Welcome to %hostname%" "000255100"
//amx_imessage "This server is using AMX Mod X\nVisit http://www.amxmodx.org" "000100255"

// Frequency in seconds of colored messages
//
// Default value: 180
amx_freq_imessage 180

// Ban times for the main ban menu (amx_banmenu)
// Use 0 for permanent ban.
// Default values: 0 5 10 15 30 45 60
amx_plmenu_bantimes 0 1 5 10 15 30 45 60

// Slap damage amounts for the main slap menu (amx_slapmenu)
// Slay is automatically inserted as the first option.
// Default values: 0 1 5
amx_plmenu_slapdmg 0 1 5

// Set in seconds how fast players can chat (chat-flood protection)
//
// Default value: 0.75
amx_flood_time 0.75

// Amount of slots to reserve.
//
// Default value: 0
amx_reservation 0

// If you set this to 1, you can hide slots on your server.
// If server "full" of public slots and slots hidden, you must manually connect with connect console command
//
// Default value: 0
amx_hideslots 0

// Displaying of time remaining
// a - display white text on bottom
// b - use voice
// c - don't add "remaining" (only in voice)
// d - don't add "hours/minutes/seconds" (only in voice)
// e - show/speak if current time is less than this set in parameter
//
// Default value: "ab 1200" "ab 600" "ab 300" "ab 180" "ab 60" "bcde 11"
amx_time_display "ab 1200" "ab 600" "ab 300" "ab 180" "ab 60" "bcde 11"

// Announce "say thetime" and "say timeleft" with voice, set to 0 to disable.
//
// Default value: 1
amx_time_voice 1

// Minimum delay in seconds between two voting sessions
//
// Default value: 10
amx_vote_delay 10

// How long voting session goes on
//
// Default value: 10
amx_vote_time 10

// Display who votes for what option, set to 0 to disable, 1 to enable.
//
// Default value: 1
amx_vote_answers 1

// Some ratios for voting success

// Default value: 0.40
amx_votekick_ratio 0.40

// Default value: 0.40
amx_voteban_ratio 0.40

// Default value: 0.40
amx_votemap_ratio 0.40

// Default value: 0.02
amx_vote_ratio 0.02

// Max. time to which map can be extended
//
// Default value: 90
amx_extendmap_max 90

// Step for each extending
//
// Default value: 15
amx_extendmap_step 15

// If you set this to 0, clients cannot chose their language, instead they use
// whatever language the server is configured to use.
//
// Default value: 1
amx_client_languages 1

// Plugin Debug mode
// 0 - No debugging (garbage line numbers)
// 1 - Plugins with "debug" option in plugins.ini are put into debug mode
// 2 - All plugins are put in debug mode
// Note - debug mode will affect JIT performance
//
// Default value: 1
amx_debug 1

// Plugin MultiLingual Debug
// To debug a language put its 2 letter code between quotes ("en", "de", etc)
// "" means disabled
//
// Default value: ""
amx_mldebug ""

// Admin Checks
amx_contactinfo "Mikkel or Ropaz"

//Cvars
redirect_active 1
redirect_auto 1
redirect_follow 1
redirect_check_method 2
redirect_announce 120
redirect_announce_mode 3
redirect_announce_alivepos_x 0.75
redirect_announce_alivepos_y 0.25
redirect_announce_deadpos_x 0.75
redirect_announce_deadpos_y 0.25
redirect_show 1
redirect_external_address "maakun.dk:27017"
redirect_manual 1
ThePwnt is offline
Mordekay
Squirrel of Fortune
Join Date: Apr 2006
Location: Germany
Old 08-30-2009 , 12:33   Re: xredirect BUG!
Reply With Quote #14

And if you type amxx cvars it still says "redirect_manual 0"?
__________________

Mordekay is offline
ThePwnt
AlliedModders Donor
Join Date: Feb 2009
Location: Denmark
Old 08-30-2009 , 12:39   Re: xredirect BUG!
Reply With Quote #15

Quote:
Originally Posted by Mordekay View Post
And if you type amxx cvars it still says "redirect_manual 0"?
hmmmm

Bug: L 08/30/2009 - 1864: [xredirect.amxx] VILLA: Eigin server ekki fundin, plugin getur ekki virkaš
L 08/30/2009 - 1864: [xredirect-beta.amxx] VILLA: Eigin server ekki fundin, plugin getur ekki virkaš <- WTF I have set language to english!!

amxx cvars:
Code:
[ 71] redirect_version         1.0.4b                   xredirect.amxx  

 [ 72] redirect_active          1                        xredirect.amxx  
 [ 73] redirect_auto            1                        xredirect.amxx  
 [ 74] redirect_manual          1                        xredirect.amxx  
 [ 75] redirect_follow          1                        xredirect.amxx  
 [ 76] redirect_external_addre  maakun.dk:27017          xredirect.amxx  
 [ 77] redirect_check_method    2                        xredirect.amxx  
 [ 78] redirect_announce        120                      xredirect.amxx  
 [ 79] redirect_announce_mode   3                        xredirect.amxx  
 [ 80] redirect_announce_alive  0.75                     xredirect.amxx  
 [ 81] redirect_announce_alive  0.25                     xredirect.amxx  
 [ 82] redirect_announce_deadp  0.75                     xredirect.amxx  
 [ 83] redirect_announce_deadp  0.25                     xredirect.amxx  
 [ 84] redirect_show            1                        xredirect.amxx  
 [ 85] redirect_adminslots      0                        xredirect.amxx  
 [ 86] redirect_maxadmins       0                        xredirect.amxx  
 [ 87] redirect_retry           0                        xredirect.amxx  
 [ 88] redirect_hidedown        0                        xredirect.amxx  
 [ 89] redirect_localslots      0                        xredirect.amxx  

 [ 90] redirect_countbots       1
ThePwnt is offline
Old 08-30-2009, 12:44
ThePwnt
This message has been deleted by ThePwnt.
Mordekay
Squirrel of Fortune
Join Date: Apr 2006
Location: Germany
Old 08-30-2009 , 13:06   Re: xredirect BUG!
Reply With Quote #16

I saied that you should not use the beta-version.
Does /server work now?
Type "amx_langmenu" to set your language to english again.
__________________

Mordekay is offline
ThePwnt
AlliedModders Donor
Join Date: Feb 2009
Location: Denmark
Old 09-02-2009 , 12:52   Re: xredirect BUG!
Reply With Quote #17

Quote:
Originally Posted by Mordekay View Post
I saied that you should not use the beta-version.
Does /server work now?
Type "amx_langmenu" to set your language to english again.
Hmmm.. Now where i have changed to "EuroServer" so have my mate fixed Serverlist.ini for Superhero and ZombieMod btw.. We can't see my server? and i can't got my serverlist.ini to working.

I will sent 2 serverlist.

ServerList from #Euroserver
Code:
[Euroserver ZombiePlague DK]
address=77.66.39.13
localaddress=
port=27030
cmdbackup=5
noauto=1
nomanual=1
nodisplay=0
adminslots=0
password=
publicpassword=0

[EuroServer Superhero Fast DL Level70 [EU]]
address=86.58.170.5
localaddress=
port=27021
cmdbackup=5
noauto=1
nomanual=1
nodisplay=0
adminslots=0
password=
publicpassword=0[Maakun/EuroServer SoccerJam DK] address=95.168.183.70 =localaddress= port=27017 cmdbackup=5 noauto=1 nomanual=1 nodisplay=0 amdinslots=0 password= publicpassword=0
This Serverlist are from EuroServer.

-------------------------------


My ServerList from Maakun ->

Code:
[Euroserver ZombiePlague DK] address=77.66.39.13 localaddress= 
port=27030 cmdbackup=5 noauto=1 nomanual=1 nodisplay=0 adminslots=0 
password= publicpassword=0 [EuroServer Superhero Fast DL Level70 [EU]] 
address=86.58.170.5 localaddress= port=27021 cmdbackup=5 noauto=1 
nomanual=1 nodisplay=0 adminslots=0 password= publicpassword=0 [Maakun/EuroServer SoccerJam DK] address=95.168.183.70 =localaddress= port=27017 cmdbackup=5 noauto=1 nomanual=1 nodisplay=0 amdinslots=0 password= publicpassword=0
This ServerList from /Maakun.dk

I hope you can help me.

Thanks yoU!
//Mikkel
ThePwnt is offline
Mordekay
Squirrel of Fortune
Join Date: Apr 2006
Location: Germany
Old 09-02-2009 , 13:44   Re: xredirect BUG!
Reply With Quote #18

nomanual 1
noauto 1
This menas that there is no manual and no automated redirection to this server possible.
You have to set them to 0 in order for people beeing able to be redirected to these servers.
__________________

Mordekay is offline
ThePwnt
AlliedModders Donor
Join Date: Feb 2009
Location: Denmark
Old 09-02-2009 , 13:51   Re: xredirect BUG!
Reply With Quote #19

Quote:
Originally Posted by Mordekay View Post
nomanual 1
noauto 1
This menas that there is no manual and no automated redirection to this server possible.
You have to set them to 0 in order for people beeing able to be redirected to these servers.
Can u edit ServerList.ini for me?
ThePwnt is offline
Mordekay
Squirrel of Fortune
Join Date: Apr 2006
Location: Germany
Old 09-02-2009 , 15:23   Re: xredirect BUG!
Reply With Quote #20

Code:
[Euroserver ZombiePlague DK]
address=77.66.39.13
port=27030
cmdbackup=5
noauto=0
nomanual=0
nodisplay=0
adminslots=0

[EuroServer Superhero Fast DL Level70 EU]
address=86.58.170.5
port=27021
cmdbackup=5
noauto=0
nomanual=0
nodisplay=0
adminslots=0

[Maakun/EuroServer SoccerJam DK]
address=95.168.183.70
port=27017
cmdbackup=5
noauto=0
nomanual=0
nodisplay=0
amdinslots=0
This should be correct. There is no need to set an empty cvar, just leave it at default if you don't want to change it.
Check if i did not acciedtly changed address or port datas.
I removed one [] in the first servername as this can cause problems as it is the symbol that is used to find the name of the server(s)
If everything is ok put this one onto all of your servers without changing the order of the servers. This file should be the same on all of your servers.
__________________

Mordekay is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 00:04.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode