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

JCM v4.0 by anderseN


Post New Thread Reply   
 
Thread Tools Display Modes
ToriQQ
Member
Join Date: Mar 2010
Old 12-29-2010 , 23:35   Re: BCM ( Block Cource Maker ) with models! - New Features
Reply With Quote #11

hi andrzn, can you edit the plugin for me so that i will be using only the normal size block? cause my fast download is not very fast and people will download for very long i only want to use normal size blocks and not tiny and large so that the people who join don't have to download the blocks
__________________

ToriQQ is offline
andrzN
Senior Member
Join Date: Jan 2010
Location: Bodø / Norway
Old 12-29-2010 , 23:47   Re: BCM ( Block Cource Maker ) with models! - New Features
Reply With Quote #12

Quote:
Originally Posted by ToriQQ View Post
hi andrzn, can you edit the plugin for me so that i will be using only the normal size block? cause my fast download is not very fast and people will download for very long i only want to use normal size blocks and not tiny and large so that the people who join don't have to download the blocks
Sure, wait some minutes and Ill remove Large and Tiny. Ill update this comment once I'm done: )

There you go. Please rate and comment!: D
Attached Files
File Type: sma Get Plugin or Get Source (blockcourcemaker_Normal_Only.sma - 926 views - 137.4 KB)

Last edited by andrzN; 12-29-2010 at 23:53.
andrzN is offline
Send a message via MSN to andrzN
ToriQQ
Member
Join Date: Mar 2010
Old 12-29-2010 , 23:52   Re: BCM Version 2.0 (Block Cource Maker) by anderseN
Reply With Quote #13

Okay thumbs up for u.

EDIT: THANKS FOR IT LOVING IT!
__________________

ToriQQ is offline
andrzN
Senior Member
Join Date: Jan 2010
Location: Bodø / Norway
Old 12-30-2010 , 14:53   Re: BCM Version 2.0 (Block Cource Maker) by anderseN
Reply With Quote #14

Quote:
Originally Posted by ToriQQ View Post
Okay thumbs up for u.

EDIT: THANKS FOR IT LOVING IT!
No problem, i'm just glad to help; )
andrzN is offline
Send a message via MSN to andrzN
MostwantedScript
Senior Member
Join Date: Sep 2010
Location: Sweden,Gothenburg
Old 12-30-2010 , 19:06   Re: BCM Version 2.0 (Block Cource Maker) by anderseN
Reply With Quote #15

Could u please edit and add DUCK to the cm
__________________
Owner & Creator of
http://mostwantedhf.info
MostwantedScript is offline
Send a message via Skype™ to MostwantedScript
andrzN
Senior Member
Join Date: Jan 2010
Location: Bodø / Norway
Old 12-30-2010 , 19:10   Re: BCM Version 2.0 (Block Cource Maker) by anderseN
Reply With Quote #16

Quote:
Originally Posted by MostwantedScript View Post
Could u please edit and add DUCK to the cm
Sure!
I've not tested it but I think it will work, tell me if otherwise!
Attached Files
File Type: sma Get Plugin or Get Source (blockcourcemaker_with_duckspam.sma - 885 views - 139.5 KB)
andrzN is offline
Send a message via MSN to andrzN
MostwantedScript
Senior Member
Join Date: Sep 2010
Location: Sweden,Gothenburg
Old 12-30-2010 , 19:15   Re: BCM Version 2.0 (Block Cource Maker) by anderseN
Reply With Quote #17

Quote:
Originally Posted by andrzN View Post
Sure!
I've not tested it but I think it will work, tell me if otherwise!

Works fine thanks alot
__________________
Owner & Creator of
http://mostwantedhf.info
MostwantedScript is offline
Send a message via Skype™ to MostwantedScript
slowarn
Junior Member
Join Date: Sep 2010
Old 12-30-2010 , 19:19   Re: BCM Version 2.0 (Block Cource Maker) by anderseN
Reply With Quote #18

Hey can u please add Box and menu to it? would be awesome. oh yeah and remove light. and add antidote and poison ?

Last edited by slowarn; 12-30-2010 at 19:20. Reason: Wrong
slowarn is offline
andrzN
Senior Member
Join Date: Jan 2010
Location: Bodø / Norway
Old 12-30-2010 , 19:27   Re: BCM Version 2.0 (Block Cource Maker) by anderseN
Reply With Quote #19

Quote:
Originally Posted by slowarn View Post
Hey can u please add Box and menu to it? would be awesome. oh yeah and remove light. and add antidote and poison ?
I was planning on adding boxes to the cource maker, but It wont be today, maybe in a few days, I'll have to see when I've got time.

I I could remove light in a special version for you, but the light menu in the original couremaker isn't going anywhere.

And what the heck is antidote and poison? please explain more.: P
andrzN is offline
Send a message via MSN to andrzN
MostwantedScript
Senior Member
Join Date: Sep 2010
Location: Sweden,Gothenburg
Old 12-30-2010 , 19:34   Re: BCM Version 2.0 (Block Cource Maker) by anderseN
Reply With Quote #20

Mabye this will help you ^^

PHP Code:
ActionAntidote(id)
{
g_is_poisoned[id] = false;
 
set_hudmessage(gHudRedgHudGreengHudBluegfTextXgfTextYgHudEffectsgfHudFxTimegfHudHoldTimegfHudFadeInTimegfHudFadeOutTimegHudChannel);
show_hudmessage(id"[%s %s]^nYou feel more healthy now!"PLUGIN_PREFIXPLUGIN_VERSION);
}
 
 
ActionPoison(ident)
{
 static 
property1[5];
 
GetProperty(ent1property1);
 new 
Float:team str_to_float(property1);
 if(
team <= 1.0)
 {
  
g_is_poisoned[id] = true;
 }
 else if(
team == 2.0)
 {
  if(
get_user_team(id) == 1)
  {
   
g_is_poisoned[id] = true;
  }
  else if(
get_user_team(id) == 2)
  {
   
set_hudmessage(gHudRedgHudGreengHudBluegfTextXgfTextYgHudEffectsgfHudFxTimegfHudHoldTimegfHudFadeInTimegfHudFadeOutTimegHudChannel);
   
show_hudmessage(id"[%s %s]^nThis Block is only for Terrorists"PLUGIN_PREFIXPLUGIN_VERSION);
  }
 }
 else if(
team == 3.0)
 {
  if(
get_user_team(id) == 2)
  {
   
g_is_poisoned[id] = true;
  }
  else if(
get_user_team(id) == 1)
  {
   
set_hudmessage(gHudRedgHudGreengHudBluegfTextXgfTextYgHudEffectsgfHudFxTimegfHudHoldTimegfHudFadeInTimegfHudFadeOutTimegHudChannel);
   
show_hudmessage(id"[%s %s]^nThis Block is only for Counter-Terrorist!"PLUGIN_PREFIXPLUGIN_VERSION);
  }
 }
 else
 {
  
BM_Print(id"[%s %s] You stepped on a Poison! Now you need to get an Antidote!"PLUGIN_PREFIXPLUGIN_VERSIONg_is_poisoned[id]);
 }

__________________
Owner & Creator of
http://mostwantedhf.info
MostwantedScript is offline
Send a message via Skype™ to MostwantedScript
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 14:00.


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