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

amx_checkpoint_beta(DarkShadowST)


Post New Thread Reply   
 
Thread Tools Display Modes
LinxuS
Junior Member
Join Date: Jan 2005
Old 01-15-2005 , 22:17  
Reply With Quote #11

Wow this is a fucking trojan... gtfo
LinxuS is offline
Send a message via AIM to LinxuS Send a message via MSN to LinxuS Send a message via Yahoo to LinxuS
f1del1ty.oXi
Veteran Member
Join Date: Nov 2004
Old 01-15-2005 , 22:23  
Reply With Quote #12

lmao...he posts as it's a 4 month old thread.....

"some people just never cease to amaze me" - m0gley.
__________________
f1del1ty.oXi is offline
DarkShadowST
Member
Join Date: Apr 2004
Location: Texas
Old 02-06-2005 , 05:05  
Reply With Quote #13

Asskikr....you suck

2000 something dl's???

I love you guys...

Edit: I think AMXX comes with some maps config thingy...
If not I know you can dl one somewhere, so u can set cvars based on certain maps...
anyway, just throw cp_mode 0 in there on the maps u don't want it running on, and cp_mode 1 on the ones when u do... I know it's not perfect but...it works...
DarkShadowST is offline
Send a message via AIM to DarkShadowST Send a message via MSN to DarkShadowST Send a message via Yahoo to DarkShadowST
kingpin
Veteran Member
Join Date: Apr 2004
Location: kpsforum.com
Old 02-06-2005 , 14:58  
Reply With Quote #14

Quote:
Originally Posted by LinxuS
Wow this is a fucking trojan... gtfo
thankyou for your opinion and feel free to shove it up your ass. thankyou.

and lol darkshadow.
__________________
kingpin is offline
Send a message via ICQ to kingpin Send a message via AIM to kingpin Send a message via MSN to kingpin Send a message via Yahoo to kingpin Send a message via Skype™ to kingpin
DarkShadowST
Member
Join Date: Apr 2004
Location: Texas
Old 03-24-2005 , 22:36  
Reply With Quote #15

Asskikr Loves Me
__________________
My Current Desktop:
Entire

DONT WATCH ME!!! Evil...People...
DarkShadowST is offline
Send a message via AIM to DarkShadowST Send a message via MSN to DarkShadowST Send a message via Yahoo to DarkShadowST
jay7
Senior Member
Join Date: Jun 2004
Old 07-13-2005 , 19:56  
Reply With Quote #16

updates? still, you cant play right away sometimes after choosing a team. a cvar to use weaponstring function without the respawn? a cvar to define how long guns remains on the ground so that server doesnt crash?
jay7 is offline
mikes3ds
Member
Join Date: Jul 2005
Location: CA
Old 08-04-2005 , 18:44  
Reply With Quote #17

Nice job it works great

Theres one problem but its not that big of deal......I found this in my loggs
Code:
<
L 08/04/2005 - 08:12:43: [AMXX] Run time error 10 (native) (plugin "amx_checkpoint_beta.amxx") - debug not enabled.
L 08/04/2005 - 08:12:43: [FUN] Invalid player 23 (not in-game)
..........
>
It does this some times but I dont know Y.......(can you confirm its spectators thats what i think it is)

BUT BESIDES THAT YOUR PLUGIN KICKS ASS
keep up the good work my man


is there any way to make a cvar so you can change the TIME limit for each team, per map...example
spawn time seconds
sv_t_spawn 15
sv_ct_spawn 10

To make it fair for some maps you need that...I was just wondering....

...!!!! BUT STILL NICE JOB
..!!!
mikes3ds is offline
techieVLAD
Junior Member
Join Date: Nov 2005
Location: Fullerton, CA
Old 11-22-2005 , 21:47  
Reply With Quote #18

Hey, here's one that should be pretty easy to add. How about spawn protection for all the jerkwads who like to spawn camp on surf maps? I already took the liberty of finding a bit of code that may even help you add it faster. I know it's not formatted to fit directly into the plugin, but if I could do that, I already would have.

Code:
public respawn(svIndex[]) {    /* Respawn user */    new vIndex = str_to_num(svIndex)    if(get_user_team(vIndex) == 3) return PLUGIN_CONTINUE    spawn(vIndex)    if(get_cvar_num("amx_respawn_enable") == 1)    {        if(get_cvar_num("amx_spawn_protect")==1)        {         if(get_cvar_num("amx_dm_spam") == 1)         {             client_print(vIndex,print_chat,"* [AMX] * Deathmatch Autopilot respawn health protection enabled ")         }         set_user_rendering(vIndex,kRenderFxGlowShell,255,255,0,kRenderTransAlpha,255)         set_user_health(vIndex,9999)         set_task(5.0,"protect_off",0,svIndex,32)        }    } }
That way players spawn with protection.

Code:
public protect_off(svIndex[]) {     /* Turn off spawn Protection */     new vIndex = str_to_num(svIndex)     if(get_cvar_num("amx_spawn_protect")==1)         {         set_user_health(vIndex,100)         set_user_rendering(vIndex,kRenderFxGlowShell,0,0,0,kRenderTransAlpha,255)         if(get_cvar_num("amx_dm_spam") == 1)                 {             client_print(vIndex,print_chat,"* [AMX] * Deathmatch Autopilot respawn health protection disabled ")            }     }         return PLUGIN_CONTINUE }
And then it turns off...
Please add that. I would love you forever.
__________________
techieVLAD is offline
Send a message via AIM to techieVLAD Send a message via MSN to techieVLAD
mikes3ds
Member
Join Date: Jul 2005
Location: CA
Old 12-19-2005 , 14:32  
Reply With Quote #19

A FIX

Ok theres a bug; im sure it happend to many people that have used this plugin.

When all teams are full, and a spectator is trying to choose a team and he keep pressing a team; he well radomly spawn, as a CT in the T base.

It happend to me atleast 5 times a on our servers.

There is a simple way to fix it.

Add this LINE:
cs_get_user_team(deadperson) == CS_TEAM_SPECTATOR

Befor
Code:
public cp_livenow(dpid[]) {

    new deadperson = dpid[0]

    if(get_user_team(deadperson) == 0 || is_user_alive(deadperson))
        return PLUGIN_CONTINUE

    spawn(deadperson)
    
    return PLUGIN_CONTINUE
}
After
Code:
public cp_livenow(dpid[]) {

    new deadperson = dpid[0]

    if(get_user_team(deadperson) == 0 || is_user_alive(deadperson) || cs_get_user_team(deadperson) == CS_TEAM_SPECTATOR)
        return PLUGIN_CONTINUE

    spawn(deadperson)
    
    return PLUGIN_CONTINUE
}
or download it
Attached Files
File Type: sma Get Plugin or Get Source (amx_checkpoint_beta.sma - 856 views - 32.5 KB)
__________________
[img]http://img529.**************/img529/3995/omg6gp.png[/img]
mikes3ds is offline
kingpin
Veteran Member
Join Date: Apr 2004
Location: kpsforum.com
Old 02-13-2006 , 23:43  
Reply With Quote #20

thanx mikes3ds updated with your code till I have time to take a look at it further...
__________________
kingpin is offline
Send a message via ICQ to kingpin Send a message via AIM to kingpin Send a message via MSN to kingpin Send a message via Yahoo to kingpin Send a message via Skype™ to kingpin
Reply



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 00:04.


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