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

Closes upon start


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
RPRaiden
Member
Join Date: Apr 2004
Location: UK
Old 04-19-2004 , 18:04   Closes upon start
Reply With Quote #1

I aim to install AMX X Mod onto my client. The reason being I can then script for it and test them on a "Lan Game" so I can edit them and test them ready for release. I installed the metamod provided with AMX Mod X and placed it in:

Code:
addons/metamod/dlls/
In my liblist.gam the dll's are defined

Code:
gamedll "addons\metamod\dlls\metamod.dll"
gamedll_linux "dlls/ts_i386.so"
Basicly when I start a server it closes the game before the server is created. Its like its kicking me before the server is finished.
I thought it was the kick user with invalid password but its not, I changed my name it did it, I made sure my set info was right, My users.ini looks like:

Code:
"Raiden" "Raiden" "abcdefghijklmnopqrstu" ""
This is because when I saved it the format messed up and lines were collapsing.

my amxx.cfg is:
Code:
// AMX Configuration File
echo Executing AMX Mod X Configuration File

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

// Name of setinfo which should store a password on a client (you should change this)
// (Example: setinfo _pw "password")
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
amx_mode 1

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

// Frequency in seconds and text of scrolling message
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)
amx_imessage "Welcome to %hostname%" "000255100"
amx_imessage "Raidenss Plugin Testing Server\nVisit http://vampstudios.daspace.de" "000100255"

// Frequency in seconds of colored messages
amx_freq_imessage 180

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

// Amount of reserved slots (for more details see comments in a plugin source)
amx_reservation 2

// 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
amx_time_display "ab 1200" "ab 600" "ab 300" "ab 180" "ab 60" "bcde 11"

// Announce "say thetime" and "say timeleft" with voice
amx_time_voice 1

// Minimum delay in seconds between two voting sessions
amx_vote_delay 10

// How long voting session goes on
amx_vote_time 10

// Display who votes for what option
amx_vote_answers 1

// Some ratios for voting success
amx_votekick_ratio 0.40
amx_voteban_ratio 0.40
amx_votemap_ratio 0.40
amx_vote_ratio 0.02

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

// Step for each extending
amx_extendmap_step 15
Im running the game on "Lan Game" but it doesnt work on internet games either (NONE DEDICATED)
__________________
RPRaiden is offline
Send a message via ICQ to RPRaiden Send a message via AIM to RPRaiden Send a message via MSN to RPRaiden Send a message via Yahoo to RPRaiden
NinjaMcNugget
Junior Member
Join Date: Apr 2004
Old 04-19-2004 , 22:07  
Reply With Quote #2

unfortunately, AMX modx either does not work well or even work at all with listen servers on condition zero. my advice is to either run a dedicated server, or wait until the issue has been addressed by bailopan and fixed in the next release.
NinjaMcNugget is offline
RPRaiden
Member
Join Date: Apr 2004
Location: UK
Old 04-20-2004 , 14:04  
Reply With Quote #3

Quote:
Originally Posted by NinjaMcNugget
unfortunately, AMX modx either does not work well or even work at all with listen servers on condition zero. my advice is to either run a dedicated server, or wait until the issue has been addressed by bailopan and fixed in the next release.
Im not playing condition zero, I tried just using metamod and metamod is the problem, apparently no one told me that you need a config.ini
__________________
RPRaiden is offline
Send a message via ICQ to RPRaiden Send a message via AIM to RPRaiden Send a message via MSN to RPRaiden Send a message via Yahoo to RPRaiden
RPRaiden
Member
Join Date: Apr 2004
Location: UK
Old 04-20-2004 , 16:37  
Reply With Quote #4

Problem solution:
If your installing later versions of Metamod for The Specialists then you need to create a config.ini in the same folder of your plugins.ini and put in it: dlls/mp.dll
__________________
RPRaiden is offline
Send a message via ICQ to RPRaiden Send a message via AIM to RPRaiden Send a message via MSN to RPRaiden Send a message via Yahoo to RPRaiden
shady
Member
Join Date: Mar 2004
Location: Turkey/Istanbul
Old 04-21-2004 , 05:55  
Reply With Quote #5

I solve this problem like this: I customize myself to dhsjdhsd, create a game. While in game I type:
setinfo _pw whateverthepasswordis, then change my name to whateveriswrittenintheusers.ini. So I get "Password Accepted", "Privileges Set".
__________________
No signature !!!
shady is offline
Send a message via ICQ to shady
RPRaiden
Member
Join Date: Apr 2004
Location: UK
Old 04-21-2004 , 15:33  
Reply With Quote #6

Quote:
Originally Posted by shady
I solve this problem like this: I customize myself to dhsjdhsd, create a game. While in game I type:
setinfo _pw whateverthepasswordis, then change my name to whateveriswrittenintheusers.ini. So I get "Password Accepted", "Privileges Set".
you dont understand, your game closes before server start with TS, you need to make that config.ini in metamod to make it work. So that would not work.
__________________
RPRaiden is offline
Send a message via ICQ to RPRaiden Send a message via AIM to RPRaiden Send a message via MSN to RPRaiden Send a message via Yahoo to RPRaiden
devicenull
Veteran Member
Join Date: Mar 2004
Location: CT
Old 04-21-2004 , 16:29  
Reply With Quote #7

Your users.ini is messed up.
it should be "Raiden" "Raiden" "abcdefghijklmnopqrstu" "ce"
Then, check your console after it "crashes"
I'll bet MM is having problems finding the game dll
__________________
Various bits of semi-useful code in a bunch of languages: http://code.devicenull.org/
devicenull is offline
Burnzy
Veteran Member
Join Date: Apr 2004
Old 04-21-2004 , 17:59  
Reply With Quote #8

i didnt no u put it in that folder... i put mine in addons/ just put the whole amxx folder in there...
__________________
Burnzy is offline
Send a message via AIM to Burnzy
RPRaiden
Member
Join Date: Apr 2004
Location: UK
Old 04-22-2004 , 13:59  
Reply With Quote #9

1, I know I deleted the extra strings because I thought it may be kicking me before the server starts.
2, Its already working!
3, The config.ini is too FIX METAMOD for people using metamod FOR THE SPECIALISTS MOD, that was the problem, and I fixed it. Its all working now , stop the suggestions the solution for people with ts is here!
__________________
RPRaiden is offline
Send a message via ICQ to RPRaiden Send a message via AIM to RPRaiden Send a message via MSN to RPRaiden Send a message via Yahoo to RPRaiden
Reply


Thread Tools
Display Modes

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 09:32.


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