AlliedModders

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

Don Punch 03-25-2009 21:41

ducking origin
 
how many units does the origin chance when a player is ducking?

not sure if this is mod specific, but thre Half-Lfie mod is TS

Exolent[jNr] 03-25-2009 21:44

Re: ducking origin
 
Test for yourself:
Code:
#include <amxmodx> #include <amxmisc> #include <fakemeta> public plugin_init() {     register_plugin("Origin Test", "0.1", "Exolent");         register_clcmd("say /origin", "CmdOrigin"); } public CmdOrigin(client) {     new Float:origin[3];     pev(client, pev_origin, origin);         client_print(client, print_chat, "origin = {%f, %f, %f}", origin[0], origin[1], origin[2]);         return PLUGIN_HANDLED; }


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

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