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

ProKreedz 2.31


Post New Thread Reply   
 
Thread Tools Display Modes
D@NG3R
Member
Join Date: Feb 2010
Old 02-08-2011 , 08:12   Re: ProKreedz 2.26
Reply With Quote #271

Well.. can you make it anyway? Because not all maps have heal boosters.. i mean this one im using..
D@NG3R is offline
NucL3ra
Veteran Member
Join Date: Sep 2008
Location: Bucuresti , Romania
Old 02-08-2011 , 12:07   Re: ProKreedz 2.26
Reply With Quote #272

It's illegal to use godmode for runs with maps that don't have. (eg you can do jb shortcuts like kz_ep_gigablock_b01 or kz_cg_wigbl0ck).

But if you really want, edit your own. Put in start_climb function after starting the timer ---
set_user_health ( id, 500000 ) or set_user_godmode (id, 1)
NucL3ra is offline
Send a message via Yahoo to NucL3ra
D@NG3R
Member
Join Date: Feb 2010
Old 02-08-2011 , 16:58   Re: ProKreedz 2.26
Reply With Quote #273

I am not using it for "kz" dude . Thanks it's perfect now
D@NG3R is offline
berix
Member
Join Date: Aug 2006
Location: Poland
Old 02-09-2011 , 16:38   Re: ProKreedz 2.26
Reply With Quote #274

maybe add command /me - show player records
__________________
berix is offline
NucL3ra
Veteran Member
Join Date: Sep 2008
Location: Bucuresti , Romania
Old 02-09-2011 , 17:11   Re: ProKreedz 2.26
Reply With Quote #275

It is /prorecords -- for SQL version only.

For normal version I don't think it's possible.
NucL3ra is offline
Send a message via Yahoo to NucL3ra
buzarini
Member
Join Date: Mar 2008
Old 02-11-2011 , 20:56   Re: ProKreedz 2.26
Reply With Quote #276

NucL3ra
please add
+ /givehook (like kz-arg)
+ /hookmenu (like kz-arg)
+ /go (teleport menu)
+ remove scout
+ /c4start (like kz-arg)
+ flashlight colors (like kz-arg)
+ add fakebot

Then add more suggestions.
buzarini is offline
NucL3ra
Veteran Member
Join Date: Sep 2008
Location: Bucuresti , Romania
Old 02-12-2011 , 03:45   Re: ProKreedz 2.26
Reply With Quote #277

/givehook -- there is kz_hook name on/off or @all on/off.
/hookmenu -- It's on the way
/go -- there is /menu
Scout gets removed when you start the timer.
C4start -- I said 25 times, there is already a plugin doing this.
Flashlight colors -- Also there's a plugin
Fakebot -- I don't like the fakebot, if you want infinite round, get the respective plugin.
NucL3ra is offline
Send a message via Yahoo to NucL3ra
wint5555
Junior Member
Join Date: Jun 2010
Old 02-13-2011 , 06:38   Re: ProKreedz 2.26
Reply With Quote #278

i have a question.
i dont no its my problem or plugin problem or php problem
recordshow if player have a newtime
checkpoints gochecks it opposite
i mean player use 1 checkpoints 3 gochercks
recordShow will be 3 Checkpoints 1 gochercks
if its plguin problem hope soon fixed
and i love this plugin so good !
thx plguin author

sorry for my bad english ^^

Last edited by wint5555; 02-13-2011 at 06:45.
wint5555 is offline
a412010
Member
Join Date: Oct 2008
Location: Taipei, Taiwan
Old 02-14-2011 , 05:06   Re: ProKreedz 2.26
Reply With Quote #279

@nuclear
Where can I get the custom start/end plugin and fake bot plugin if you don`t want to add them in your plugin? Thanks.
a412010 is offline
STI-ScorpioN
Member
Join Date: Aug 2006
Location: POLAND
Old 02-14-2011 , 06:23   Re: ProKreedz 2.26
Reply With Quote #280

NucL3ra my english is very bad, but ... look ..

1. use: /pause
2. use /noclip
ERROR: form of the blocks, and it is necessary to reconnect

my version /spec, /noclip:

STANDARD:
Code:
new Float:NCCheckpoints[33][2][3]
new bool:g_NCbCpAlternate[33]
new NCcheck[33]
PAUSE CODE:
Code:
public Pause(id)
{
        
    if (get_pcvar_num(kz_pause) == 0)
    {    
        kz_hud_message(id, "Pauza jest niedostepna ")
        return PLUGIN_HANDLED
    }

    if(! timer_started[id])
    {
        kz_hud_message(id, "Czas nie zostal uruchomiony START TIME")
        return PLUGIN_HANDLED
    }
    
    if(! is_user_alive(id) )
    {
        kz_hud_message(id, "Musisz byc zywy, by uzyc tej komendy MUST BE LIVE")
        return PLUGIN_HANDLED
    }
    
    if ( ( pev( id, pev_flags ) & FL_ONGROUND2  ) || NCcheck[id] == 1 )
    {
        if ( NCcheck[id] == 1 )
        {
            noclip(id)
        }

        if(!IsPaused[id]) 
        {
            g_pausetime[id] =   thetime() - timer_time[id]
            timer_time[id] = 0.0
            IsPaused[id] = true
            kz_hud_message(id, "Twoj czas zostal wstrzymany STOP")
            set_pev(id, pev_flags, pev(id, pev_flags) | FL_FROZEN)
            pev(id, pev_origin, PauseOrigin[id])
            noclip(id)
        }
        else
        {
            timer_time[id] = thetime() - g_pausetime[id] + timer_time[id]
            IsPaused[id] = false
            kz_hud_message(id, "Twoj czas zostal wznowiony")
            set_pev(id, pev_flags, pev(id, pev_flags) & ~FL_FROZEN)
        }
    }
    else
        kz_hud_message(id, "Musisz dotykac podloza by uzyc tej komendy")

    return PLUGIN_HANDLED
}
NOCLIP:

Code:
public noclip(id)
{
    if ( IsPaused[id] )
    {
        if ( NCcheck[id] == 0 )
        {
            pev(id, pev_origin, NCCheckpoints[id][g_NCbCpAlternate[id] ? 1 : 0])
            g_NCbCpAlternate[id] = !g_NCbCpAlternate[id]
            set_pev(id, pev_flags, pev(id, pev_flags) & ~FL_FROZEN)
            
            fm_set_user_noclip(id,fm_get_user_noclip(id) == 1 ? 0 : 1)
            NCcheck[id] = 1
        } 
        else 
        {
            set_pev( id, pev_velocity, Float:{0.0, 0.0, 0.0} );
            set_pev( id, pev_flags, pev(id, pev_flags) | FL_DUCKING );
            set_pev( id, pev_fuser2, 0.0 );
            engfunc( EngFunc_SetSize, id, {-16.0, -16.0, -18.0 }, { 16.0, 16.0, 18.0 } );
            set_pev(id, pev_origin, NCCheckpoints[ id ][ !g_NCbCpAlternate[id] ] )    
            
            set_pev(id, pev_flags, pev(id, pev_flags) | FL_FROZEN)
            
            fm_set_user_noclip(id,fm_get_user_noclip(id) == 1 ? 0 : 1)
            NCcheck[id] = 0
        }
    }
    else 
    {
        if(read_argc() == 1 || read_argc() == 2)
        {
            fm_set_user_noclip(id,fm_get_user_noclip(id) == 1 ? 0 : 1)
            if(fm_get_user_noclip(id) == 1)
                detect_cheat(id,"Noclip")
        }
    }
    return PLUGIN_HANDLED
}
AND
Code:
public finish_climb(id)
{
    if ( IsPaused[id] )
    {
         kz_hud_message(id, "PAUSE ON - NO FINISH ")
    } else { ...
Code:
  public CheckPoint(id)
{
    if ( IsPaused[id] )
    {
        kz_hud_message(id, "PASUE ON - NO SAVE POSITION")
        
        return PLUGIN_HANDLED
    }
    else 
    { ...
Code:
public GoCheck(id) 
{
    if ( IsPaused[id] )
    {
        kz_hud_message(id, "PASUE ON - NO TELEPORT OPTIONS")
        
        return PLUGIN_HANDLED
    }
    else 
    {
So when I use
1. /pasue = pause time + save position + /noclip ON
2. /pause = teleport to save position + /noclip OFF + time START

and one more time: sorry for my english

Last edited by STI-ScorpioN; 02-14-2011 at 08:54.
STI-ScorpioN is offline
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 11:36.


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