AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   deleteme (https://forums.alliedmods.net/showthread.php?t=48537)

naeo 12-13-2006 22:23

deleteme
 
deleteme

SweatyBanana 12-13-2006 22:36

Re: Getting ex_interp impossible?
 
http://www.amxmodx.org/funcwiki.php?...ient&go=search

naeo 12-14-2006 00:54

Re: Getting ex_interp impossible?
 
Tried that SweatyBanana - didnt work...

I tried with newest versions of metamod and metamod-p..
I also use newest version of amxx..


Can you verify that query_client_cvar really works on any of those two cvars?

I suspect a hlds update may have screwed up query_client_cvar().. Think i read that somewhere on these forums.
Alias blocked from being sent from server or something..?

jopmako 12-14-2006 02:24

Re: Getting ex_interp impossible?
 
Code:
new cl_updaterate[id] public client_cvar(id) {    query_client_cvar(id, "cl_updaterate", "get_cl_updaterate_result")    set_task(0.5,"print_cvar",id) } public print_cvar(id) {    client_print(0,print_chat,"client %d cl_updaterate = %d",id,cl_updaterate[id]) } public get_cl_updaterate_result(id,cvar[],value[]) {    cl_updaterate[id] = str_to_num(value) }

This is a part from my plugin to get client cvars.

naeo 12-15-2006 11:27

Re: Getting ex_interp impossible?
 
Thanks. I'll try that when i get the chance.

It does look alot like what i did though.. wich did not work. But i'll try again when i get the chance.


All times are GMT -4. The time now is 06:53.

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