AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   Removed (https://forums.alliedmods.net/showthread.php?t=122494)

r14170 03-27-2010 15:25

Removed
 
Removed by R14170.

Lw. 03-27-2010 15:32

Re: R14170`s BlockMaker Public
 
thx you.

CreePs- 03-27-2010 16:09

Re: R14170`s BlockMaker Public
 
you can add ice bhop

PHP Code:

actionOnIceBhop(id)
{
    new 
taskid TASK_ICE id;
    
    if (!
gbOnIceBhop[id])
    {
        
//save players maxspeed value
        
gfOldMaxSpeed[id] = get_user_maxspeed(id);
        
        
//make player feel like they're on ice
        
entity_set_float(idEV_FL_friction0.15);
        
set_user_maxspeed(id600.0);
        
        
//player is now 'on ice'
        
gbOnIceBhop[id] = true;
    }
    
    
//remove any existing 'not on ice' task
    
if (task_exists(taskid))
    {
        
remove_task(taskid);
    }
    
    
//set task to remove 'on ice' effect very soon (task replaced if player is still on ice before task time reached)
    
set_task(0.1"taskNotOnIce"taskid);



Xalus 03-27-2010 16:35

Re: R14170`s BlockMaker Public
 
Don't know if it works, first Action xD

3D Block

PHP Code:

// 3d block
action3Dblock(id)
{
    if (
halflife_time() >= gf3DblockTimeOut[id])
    {
        
set_viewidCAMERA_3RDPERSON );
        
        
set_task(10.0,"3dperson"id);
        
        
gf3DblockTimeOut[id] = halflife_time() + 0.5;
    }
}

public 
3dperson(id)
{
    
set_viewidCAMERA_NONE );



r14170 03-27-2010 16:40

Re: R14170`s BlockMaker Public
 
i dont know

Xalus 03-27-2010 16:46

Re: R14170`s BlockMaker Public
 
public 3dperson(id)
nope ;)

Whaat93 03-27-2010 17:15

Re: R14170`s BlockMaker Public
 
bm_block_speedbost_pole error...
when i copy some mdl and rename it to bm_block_speedbost_pole i get the same error...fix?

Xalus 03-27-2010 17:22

Re: R14170`s BlockMaker Public
 
Give error.

Whaat93 03-27-2010 18:46

Re: R14170`s BlockMaker (BETA) 1.3
 
Xalus: you want my code error or does u have error...?

CreePs- 03-27-2010 19:49

Re: R14170`s BlockMaker (BETA) 1.3
 
here XP block 75 XP work only with exolent xp mod

PHP Code:

actionXP(idOverrideTimer)
{

    
        new 
Float:fTime halflife_time();
    
        if (
fTime >= g_xp_next_use[id] || OverrideTimer)
        {
        if ( 
get_user_team id ) == )
        {
        
hnsxp_add_user_xp(id75);
        
set_hudmessage(255255255, -1.0, -1.006.04.0);
        
ColorChat(idRED"^x04[XP]^x03 You gained^x04 75XP^x03 !");
        }
    
            
g_xp_next_use[id] = fTime get_cvar_float("bm_xpcooldown");
    }
    else
    {
        
set_hudmessage(gHudRedgHudGreengHudBluegfTextXgfTextYgHudEffectsgfHudFxTimegfHudHoldTimegfHudFadeInTimegfHudFadeOutTimegHudChannel);
        
show_hudmessage(id"XP Block Next Use 1 Round");
    }




All times are GMT -4. The time now is 17:53.

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