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

[ES] Bloquear final de la ronda? (Sin orpheu)


  
 
 
Thread Tools Display Modes
Author Message
000aa000aa000
BANNED
Join Date: May 2010
Old 05-19-2010 , 10:25   [ES] Bloquear final de la ronda? (Sin orpheu)
#1

Alguien me da un ejemplo de como bloquear el final de la ronda sin orpheu?.
000aa000aa000 is offline
AntiBots
Veteran Member
Join Date: May 2008
Location: Brazil
Old 05-19-2010 , 11:29   Re: [ES] Bloquear final de la ronda? (Sin orpheu)
#2

Solo se puede con un bot, sin orpheu nadie lo pudo hacer.
__________________
AntiBots is offline
Send a message via ICQ to AntiBots Send a message via MSN to AntiBots Send a message via Skype™ to AntiBots
000aa000aa000
BANNED
Join Date: May 2010
Old 05-19-2010 , 12:26   Re: [ES] Bloquear final de la ronda? (Sin orpheu)
#3

fuck, i para realmente hacerlo with out orpheu, es imposible? =(
000aa000aa000 is offline
fezh
Veteran Member
Join Date: Dec 2008
Location: BANNED
Old 05-19-2010 , 12:33   Re: [ES] Bloquear final de la ronda? (Sin orpheu)
#4

Quote:
Originally Posted by 000aa000aa000 View Post
fuck, i para realmente hacerlo with out orpheu, es imposible? =(
Hacelo con el plugin de Arkshine y no rompas las bolas.
__________________
"There is no knowledge, that is not power"
fezh is offline
AntiBots
Veteran Member
Join Date: May 2008
Location: Brazil
Old 05-19-2010 , 12:35   Re: [ES] Bloquear final de la ronda? (Sin orpheu)
#5

Quote:
Originally Posted by fezh View Post
Hacelo con el plugin de Arkshine y no rompas las bolas.
Idem!!
__________________
AntiBots is offline
Send a message via ICQ to AntiBots Send a message via MSN to AntiBots Send a message via Skype™ to AntiBots
joropito
AlliedModders Donor
Join Date: Mar 2009
Location: pfnAddToFullPack
Old 05-19-2010 , 16:08   Re: [ES] Bloquear final de la ronda? (Sin orpheu)
#6

En precache hookea spawn y cuando la entidad es alguna de las siguientes, bloquealas para que no existan:

"func_hostage_rescue",
"info_hostage_rescue",
"func_bomb_target",
"info_bomb_target",
"hostage_entity",
"info_vip_start",
"func_vip_safetyzone",
"func_escapezone",
__________________

Divide et vinces
approved plugins | steam account

I don't accept PM for support. Just ask on forums.
If you're looking for private work, PM me.
joropito is offline
Send a message via MSN to joropito
000aa000aa000
BANNED
Join Date: May 2010
Old 05-19-2010 , 16:13   Re: [ES] Bloquear final de la ronda? (Sin orpheu)
#7

PHP Code:
public plugin_precache()
{
     
RegisterHam(Ham_Spawn"func_info_y_eso""lerolero"1)
// y asi un monton de veces
}

public 
lerolero(id)
{
   
remove_entity(id)

000aa000aa000 is offline
fezh
Veteran Member
Join Date: Dec 2008
Location: BANNED
Old 05-19-2010 , 16:21   Re: [ES] Bloquear final de la ronda? (Sin orpheu)
#8

No.

Code:
#include <amxmodx> #include <fakemeta> new Trie:g_tEntities; new g_hSpawn; public plugin_precache( ) {     new const szEntities[ ][ ] =     {            "func_hostage_rescue",         "info_hostage_rescue",         "func_bomb_target",         "info_bomb_target",         "hostage_entity",         "info_vip_start",         "func_vip_safetyzone",         "func_escapezone"     };         g_tEntities = TrieCreate( );         for ( new i = 0; i < sizeof( szEntities ); i++ )     {         TrieSetCell( g_tEntities, szEntities[ i ], i );     }         g_hSpawn = register_forward( FM_Spawn, "Fwd_Spawn_Pre", 0 ); } public Fwd_Spawn_Pre( iEnt ) {     static szClassName[ 21 ];     pev( iEnt, pev_classname, szClassName, charsmax( szClassName ) );         if ( TrieKeyExists( g_tEntities, szClassName ) )     {         engfunc( EngFunc_RemoveEntity, iEnt );         return FMRES_SUPERCEDE;     }     return FMRES_IGNORED; } public plugin_init( ) {     unregister_forward( FM_Spawn, g_hSpawn );         TrieDestroy( g_tEntities ); }
__________________
"There is no knowledge, that is not power"
fezh is offline
000aa000aa000
BANNED
Join Date: May 2010
Old 05-19-2010 , 16:25   Re: [ES] Bloquear final de la ronda? (Sin orpheu)
#9

I con eso la ronda no terminá?
000aa000aa000 is offline
Kiske
Veteran Member
Join Date: May 2009
Old 05-19-2010 , 20:46   Re: [ES] Bloquear final de la ronda? (Sin orpheu)
#10

Quote:
Originally Posted by AntiBots View Post
Solo se puede con un bot, sin orpheu nadie lo pudo hacer.
??.
Las rondas del JailBreak no se acaban por más que el RoundTime llegue a 0, y no uso Orpheu.
__________________

Kiske is offline
Send a message via Skype™ to Kiske
 



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 09:07.


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