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

Removed


Post New Thread Reply   
 
Thread Tools Display Modes
r14170
Veteran Member
Join Date: Dec 2009
Old 03-30-2010 , 13:05   Re: R14170`s BlockMaker (BETA) 1.3
Reply With Quote #31

i dont think the BM sux .. and many ppl will agree with me .. but u have right many ppl will agree with you ;) ..
r14170 is offline
YamiKaitou
Has a lovely bunch of coconuts
Join Date: Apr 2006
Location: Texas
Old 03-30-2010 , 13:11   Re: R14170`s BlockMaker (BETA) 1.3
Reply With Quote #32

If you truely believe that BM should have a Sub-Forum, then you can open a Bug Report requesting one.
__________________
ProjectYami Laboratories

I do not browse the forums regularly anymore. If you need me for anything (asking questions or anything else), then PM me (be descriptive in your PM, message containing only a link to a thread will be ignored).
YamiKaitou is offline
Exolent[jNr]
Veteran Member
Join Date: Feb 2007
Location: Tennessee
Old 03-30-2010 , 15:02   Re: R14170`s BlockMaker (BETA) 1.3
Reply With Quote #33

Quote:
Originally Posted by YamiKaitou View Post
I agree. I also propose we create a new rule where all BM "releases" and/or "requests" have to be posted in 1 topic so the users who find all of these BM topics annoying as hell can just ignore that one thread instead of ignoring several threads
How about we delete all of these BlockMaker threads since they are all basically the same but with a few edits?
And I can foresee many more of these being released.

Or we can do that when xPaw finishes BlockMaker API so all of those plugins will be obsolete.
__________________
No private work or selling mods.
Quote:
Originally Posted by xPaw View Post
I love you exolent!
Exolent[jNr] is offline
r14170
Veteran Member
Join Date: Dec 2009
Old 03-30-2010 , 15:15   Re: R14170`s BlockMaker (BETA) 1.3
Reply With Quote #34

BlockMaker API is ?
r14170 is offline
Exolent[jNr]
Veteran Member
Join Date: Feb 2007
Location: Tennessee
Old 03-30-2010 , 15:18   Re: R14170`s BlockMaker (BETA) 1.3
Reply With Quote #35

Like this but xPaw's will be so much better.
__________________
No private work or selling mods.
Quote:
Originally Posted by xPaw View Post
I love you exolent!
Exolent[jNr] is offline
r14170
Veteran Member
Join Date: Dec 2009
Old 03-30-2010 , 15:19   Re: R14170`s BlockMaker (BETA) 1.3
Reply With Quote #36

ah ok .. much better what ? blocks ? properties ? or what else ?
r14170 is offline
Exolent[jNr]
Veteran Member
Join Date: Feb 2007
Location: Tennessee
Old 03-30-2010 , 15:25   Re: R14170`s BlockMaker (BETA) 1.3
Reply With Quote #37

I've seen xPaw's work in progress.
It will have something like:
- Easy to add/delete block types (plugins).
- Support for properties
- Support for different models (?) xPaw if you don't know, I can give you an idea
- And other stuff
__________________
No private work or selling mods.
Quote:
Originally Posted by xPaw View Post
I love you exolent!
Exolent[jNr] is offline
Xalus
Veteran Member
Join Date: Dec 2009
Location: Belgium
Old 03-30-2010 , 15:52   Re: R14170`s BlockMaker (BETA) 1.3
Reply With Quote #38

xPaw always make nice stuff

It will be a great blockmaker
__________________
Retired.
Xalus is offline
xPaw
Retired AMX Mod X Moderator
Join Date: Jul 2008
Old 03-30-2010 , 15:56   Re: R14170`s BlockMaker (BETA) 1.3
Reply With Quote #39

The project is frozen atm..

The block-plugins look like that, just so you have an idea
Code:
#include < amxmodx > #include < blockmaker > new g_iBhop, g_iDelayBhop, g_iNoSlowDownBhop; public plugin_init( ) {     register_plugin( "BM: Bhops", "1.0", "xPaw" );         BM_RegisterTouch( g_iBhop,           "ForwardBhopTouch" );     BM_RegisterTouch( g_iDelayBhop,      "ForwardBhopTouch" );     BM_RegisterTouch( g_iNoSlowDownBhop, "ForwardBhopTouch" );         BM_RegisterParam( g_iDelayBhop, "Delay Before Disappear", "1.0" );         register_think( "bm_block", "ForwardBlockThink" ); } public plugin_precache( ) {     g_iBhop = BM_RegisterBlock( "Bhop", "bhop" );     BM_PrecacheModel( g_iBhop, BM_NORMAL, "models/blockmaker/bm_block_bhop.mdl" );     BM_PrecacheModel( g_iBhop, BM_SMALL,  "models/blockmaker/small/bm_block_bhop.mdl" );     BM_PrecacheModel( g_iBhop, BM_LARGE,  "models/blockmaker/large/bm_block_bhop.mdl" );         g_iDelayBhop = BM_RegisterBlock( "Delayed Bhop", "bhop_delay" );     BM_PrecacheModel( g_iDelayBhop, BM_NORMAL, "models/blockmaker/bm_block_bhop_delay.mdl" );     BM_PrecacheModel( g_iDelayBhop, BM_SMALL,  "models/blockmaker/small/bm_block_bhop_delay.mdl" );     BM_PrecacheModel( g_iDelayBhop, BM_LARGE,  "models/blockmaker/large/bm_block_bhop_delay.mdl" );         g_iNoSlowDownBhop = BM_RegisterBlock( "No Slow Down Bhop", "bhop_noslow" );     BM_PrecacheModel( g_iNoSlowDownBhop, BM_NORMAL, "models/blockmaker/bm_block_bhop_noslow.mdl" );     BM_PrecacheModel( g_iNoSlowDownBhop, BM_SMALL,  "models/blockmaker/small/bm_block_bhop_noslow.mdl" );     BM_PrecacheModel( g_iNoSlowDownBhop, BM_LARGE,  "models/blockmaker/large/bm_block_bhop_noslow.mdl" ); } // [ Some random thinking crap goes here ]
__________________
xPaw is offline
r14170
Veteran Member
Join Date: Dec 2009
Old 03-30-2010 , 16:01   Re: R14170`s BlockMaker (BETA) 1.3
Reply With Quote #40

hm nice .. i'll be waiting for this
r14170 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 15:05.


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