AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   XAD's Plugins (https://forums.alliedmods.net/forumdisplay.php?f=70)
-   -   Translate amxmodx code to Metamod (https://forums.alliedmods.net/showthread.php?t=51371)

XP. 02-16-2007 17:30

Translate amxmodx code to Metamod
 
Hello, I need your help to transform this amxmodx code for CS 1.6 to Metamod:

Code:

#include <amxmodx>
#include <engine>
#include <amxmisc>

public plugin_init()
{
  register_plugin("Cvar Client", "1", "Me")
}

public client_putinserver(id)
{
set_task(15.0, "verificacion", id, "b")
}


public verificacion(id)
{
    query_client_cvar(id,"fps_max","result2")
}


public result2(id, const cvar[], const value[]){

    new name[32]
    get_user_name(id, name, 31)

if(equal(value,"100"))
{
client_print(id,print_chat,"%s ***", value)
}
else
{
server_cmd("kick #%d ^"Please set fps_max 100 in^"",get_user_userid(id))
}

}

if this post does not go here please move it :/

BAILOPAN 02-16-2007 21:49

Re: Translate amxmodx code to Metamod
 
what the hell...


All times are GMT -4. The time now is 13:40.

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