AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Unapproved/Old Plugins (https://forums.alliedmods.net/forumdisplay.php?f=27)
-   -   Anti-Developer (https://forums.alliedmods.net/showthread.php?t=170020)

fysiks 10-29-2011 18:09

Re: Anti-Developer
 
I don't understand why people worry about developer, just play the freaking game.

Menethil 10-30-2011 02:21

Re: Anti-Developer
 
@ challenge this is what u gave me ? does them match ?
Code:

#define ANTIDEVELOPER_OFFSET  3432

public plugin_init()
{
  register_plugin(PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR)
}

public client_putinserver(id)

  set_task(0.1, "AntiDeveloper",id+ANTIDEVELOPER_OFFSET, _, _, "b")
}

public AntiDeveloper(id)
{
  id-=ANTIDEVELOPER_OFFSET
  client_cmd(id,"developer 0")
}

public client_disconnect(id)
{
  if(task_exists(id+ANTIDEVELOPER_OFFSET))
  {
      remove_task(id+ANTIDEVELOPER_OFFSET)
  }
}

also changed to ham ( by me ofc )
@ frisks , i give u only one example
Hide and Seek Mode
Without developer , u can make normal and legal jumps.
With developer u can make huge and ilegal jums :).

Matthias Vance 10-30-2011 04:40

Re: Anti-Developer
 
Ehm, I don't get it.

I play my game, I have very high FPS because I want it all smooth etc (and because I can), and then you go slay me?

Menethil 10-30-2011 05:48

Re: Anti-Developer
 
Basicaly , and default fps_max should be 101

Beacause only few people has an sistem that keeps u a high constat FPS .
So to mentain a averrage fps for all , fps_max 101 is max fps allowed to be legal.
(each can set it's own maximum fps , that why has an cvar changer )

xPaw 10-30-2011 05:48

Re: Anti-Developer
 
Quote:

Originally Posted by Matthias Vance (Post 1586219)
Ehm, I don't get it.

I play my game, I have very high FPS because I want it all smooth etc (and because I can), and then you go slay me?

Well, in CS 1.6, you can't go higher than 100FPS without using 'developer 1'. Normally, surfing requires you 131FPS to do tricks properly, but you have way higher FPS (like 300) you can do them waaaaay easier. So it's unfair against other players.

challenge 10-30-2011 05:49

Re: Anti-Developer
 
this is what I PMed you.

Code:

#include <amxmodx>
#include <fakemeta>
#define DEVELOPER_OFFSET        768
#define MAXFPS 130        // Do not lower this
#define MAXWARNS 3
#define is_user_valid(%1) (1 <= %1 <= 32)
new iFrames[33]
new iWarnings[33]
new alive[33]
public plugin_init()
{
  register_plugin("Anti-developer", "1.0", "Challenge")
  register_forward(FM_PlayerPreThink, "Fwd_PlayerPreThink")
  register_event( "DeathMsg", "eventDeath", "a" )
  register_event("ResetHUD", "event_respawn", "b")
}

public Fwd_PlayerPreThink(id)
{
  if(!alive[id])
      return FMRES_IGNORED
  iFrames[id]++ 
  return FMRES_IGNORED
}

public client_putinserver(id)
{
  iFrames[id] = 0
  set_task(1.0, "ShowFps",id+DEVELOPER_OFFSET, _, _, "b");
}

public ShowFps(id)

  id-=DEVELOPER_OFFSET
    if(is_user_alive(id) && iFrames[id] >= MAXFPS)
    {
        iWarnings[id]++
        if(iWarnings[id] >= MAXWARNS)
        {
        client_cmd(id,"kill") 
        }
    }       
    iFrames[id] = 0
}

public client_disconnect(id)
{
  if(task_exists(id+DEVELOPER_OFFSET))
  {
      remove_task(id+DEVELOPER_OFFSET)
  }
}

public event_respawn(id)
{
  alive[id] = 1
  return PLUGIN_CONTINUE


public eventDeath()
{
  new victim = read_data(2)
  if(is_user_valid(victim))
  {
      alive[victim] = 0
  }
}

Obviously you are one of those loosers who just know how to publish other's plugin with their own name.
You just changed my defined value to a CVAR and claiming it yours. Now I am sure you will say I don't have any proof. But the answer is I do have. The PM is not deleted yet.

Anyway keep ur work up looser. And here is some more suggestion

1. #include <hamsandwich> ( donno how ur plugin compiled after change)
2. remove fakemeta and use client_think
3. use Ham_Killed instead of eventDeath ( although not necessary)

Matthias Vance 10-30-2011 07:12

Re: Anti-Developer
 
Quote:

Originally Posted by xPaw (Post 1586241)
Well, in CS 1.6, you can't go higher than 100FPS without using 'developer 1'. Normally, surfing requires you 131FPS to do tricks properly, but you have way higher FPS (like 300) you can do them waaaaay easier. So it's unfair against other players.

Ahh okay, thanks for the explanation! Why exactly 131 FPS though?

jackas 10-30-2011 09:10

Re: Anti-Developer
 
LoL

nightstalker 11-04-2011 16:52

Re: Anti-Developer
 
i don't see it being fair for having high fps just because they can. get mad just because they have a better computer than yours. I mean cmon.

more like a kid, a wide receiver being kicked out from a football game cause hes too good.

joshknifer 11-04-2011 16:59

Re: Anti-Developer
 
This plugin is clearly not the OP's work. Prob should go into unapproved, unless Challange says its okay to release.


All times are GMT -4. The time now is 05:43.

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