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

Development Roundup, We need you!


Post New Thread Reply   
 
Thread Tools Display Modes
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 09-11-2018 , 18:31   Re: Development Roundup, We need you!
Reply With Quote #11

Did you upload the whole /data/gamedata/ folder? The plugin needs that.

Usually, you should be able to see messages in the server console at server start. If you have missing gamedata or some mod/engine functions could not be found.
__________________

Last edited by Arkshine; 09-11-2018 at 18:32.
Arkshine is offline
iceeedr
Veteran Member
Join Date: Apr 2017
Location: Brazil
Old 09-11-2018 , 18:36   Re: Development Roundup, We need you!
Reply With Quote #12

Yes, I uploaded all the files, it is not possible to check the startup messages in the console because the server is rented and not have this console open to the client, however when replacing the restmenu.amxx with a previous version the blocking works again ..
__________________


Quote:
Originally Posted by fysiks View Post
Please stop trying to help. You appear to just be posting random stuff. Wait until you actually understand more about AMX Mod X and how the game works.
https://iceeedr.com.br/
iceeedr is offline
Send a message via Skype™ to iceeedr
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 09-11-2018 , 18:41   Re: Development Roundup, We need you!
Reply With Quote #13

The plugin uses a new forward `Cs_OnBuyAttempt` to detect and block. It's based on functions of the game directly, and to hook that, you need gamedata.

I guess you are not using ReGameDLL, what is your HLDS version then? If you are using an old version, it may be the cause.
__________________

Last edited by Arkshine; 09-11-2018 at 19:10.
Arkshine is offline
iceeedr
Veteran Member
Join Date: Apr 2017
Location: Brazil
Old 09-11-2018 , 21:02   Re: Development Roundup, We need you!
Reply With Quote #14

It's a ReHlds server.

Code:
] version
Protocol version 48
Exe version 1.1.2.7/Stdio (cstrike)
Exe build: 16:10:54 Aug 10 2018 (7960)


] amxx version
AMX Mod X 1.9.0.5216
Authors: 
         David "BAILOPAN" Anderson, Pavol "PM OnoTo" Marko, Felix "SniperBeamer" Geyer
         Jonny "Got His Gun" Bergstrom, Lukasz "SidLuke" Wlasinski
         Christian "Basic-Master" Hammacher, Borja "faluco" Ferrer
         Scott "DS" Ehlert
Compiled: Sep 10 2018, 17:11:21
URL:http://www.amxmodx.org/
Core mode: JIT
__________________


Quote:
Originally Posted by fysiks View Post
Please stop trying to help. You appear to just be posting random stuff. Wait until you actually understand more about AMX Mod X and how the game works.
https://iceeedr.com.br/

Last edited by iceeedr; 09-11-2018 at 21:03.
iceeedr is offline
Send a message via Skype™ to iceeedr
Old 09-12-2018, 02:35
sandeeptinku
This message has been deleted by Arkshine. Reason: Spam
Old 09-12-2018, 02:43
sandeeptinku
This message has been deleted by Arkshine. Reason: Spam
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 09-12-2018 , 03:08   Re: Development Roundup, We need you!
Reply With Quote #15

Can you look at the AMXX logs? If the gamedata files or the functions are not found, it outputs few messages in the logs. (amxmodx/logs/). Since they will appear only one time, I suggest you clean your logs, then stop/start your server.
__________________

Last edited by Arkshine; 09-12-2018 at 03:09.
Arkshine is offline
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 09-12-2018 , 08:08   Re: Development Roundup, We need you!
Reply With Quote #16

Also make sure to enable "condebug" so you can have the logs generating in the "qconsole.log" file.
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
iceeedr
Veteran Member
Join Date: Apr 2017
Location: Brazil
Old 09-12-2018 , 09:16   Re: Development Roundup, We need you!
Reply With Quote #17

This error comes on amxmodx/logs/

Code:
L 09/12/2018 - 10:13:33: -------- Mapchange to de_dust2 --------
L 09/12/2018 - 10:13:33: [CSTRIKE] BuyGunAmmo is not available
L 09/12/2018 - 10:13:33: [CSTRIKE] AddAccount is not available
L 09/12/2018 - 10:13:33: [CSTRIKE] Some functions are not available - forwards CS_OnBuy[Attempt] have been disabled
__________________


Quote:
Originally Posted by fysiks View Post
Please stop trying to help. You appear to just be posting random stuff. Wait until you actually understand more about AMX Mod X and how the game works.
https://iceeedr.com.br/
iceeedr is offline
Send a message via Skype™ to iceeedr
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 09-12-2018 , 10:00   Re: Development Roundup, We need you!
Reply With Quote #18

Is the log from linux server?

Well, the gamedata files are there but it seems it could not found BuyGunAmmo and AddAccount functions in the mod. Are you sure you have the latest version of the mod and you did not modify the gamedata files?

I tried under linux and windows with the latest version of the game, and I could not reproduce.
If you are sure you have the latest versions, can you send me by MP the cs.so or mp.dll if under windows?
__________________

Last edited by Arkshine; 09-12-2018 at 10:21.
Arkshine is offline
iceeedr
Veteran Member
Join Date: Apr 2017
Location: Brazil
Old 09-12-2018 , 11:14   Re: Development Roundup, We need you!
Reply With Quote #19

Quote:
Originally Posted by Arkshine View Post
Is the log from linux server?

Well, the gamedata files are there but it seems it could not found BuyGunAmmo and AddAccount functions in the mod. Are you sure you have the latest version of the mod and you did not modify the gamedata files?

I tried under linux and windows with the latest version of the game, and I could not reproduce.
If you are sure you have the latest versions, can you send me by MP the cs.so or mp.dll if under windows?
Yes, it is in linux, I will send you by PM the requested file, just tell me what folder it stays in, please ..
__________________


Quote:
Originally Posted by fysiks View Post
Please stop trying to help. You appear to just be posting random stuff. Wait until you actually understand more about AMX Mod X and how the game works.
https://iceeedr.com.br/
iceeedr is offline
Send a message via Skype™ to iceeedr
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 09-12-2018 , 11:15   Re: Development Roundup, We need you!
Reply With Quote #20

cstrike/dlls/
__________________
Arkshine is offline
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 10:25.


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