Jump to content
  • 0

Fabre Punch Event


Bringer

Question


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  742
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

http://pastebin.com/VNavCfWt

@Emistry

can you add this suggestion?
1. SUGGESTION

Super Fabre Points Every 1min 10monsters 

pvp_n_1-2,0,0,0,0    monster    Super Fabre    1007,10,0,60000,"fabre_punch_main::OnKill_4"
Points Random 1,100 and auto announce when players killed is this code correct? 

OnKill_4:

    announce "Super Fabre has been killed by [ " + strcharinfo(0) + " ] for " + .@value + " Point(s) !",bc_all;

    callsub( L_Point,1,100 ); // Super Fabre = 1,100 Point
    
    end;


2. SUGGESTIO

When 10mins Left npc announce Fabre Punch -- DOUBLE POINTS SPREE 10 minutes Left !
All Gian Points will be x2 Sample
1 Point = 2 Points
10 Points = 20 Points

-20 Points = -40 Points

3 SUGGESTION

When 5mins Left npc announce Fabre Punch -- TRIPLE POINTS SPREE 5 minutes Left !


All Gian Points will be x3 Sample


1 Point = 3 Points


10 Points = 30 Points


-20 Points = -60 Points

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 1

  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2347
  • Joined:  10/28/11
  • Last Seen:  

try
https://pastebin.com/BFqnbP1q


the reason I asked to post at forum because

  • I wanted to give a chance to other member in the forum to try take the request and write it.
  • I am not free at that moment.

last but not least, I actually dont really like the way member keep tag me / send me a pm with a link to the forum post to ask me to write a script ...

I meant I already can see the topic in forum without the need of member to notify me about it, so I don't really want/need any extra "notification" for it.

thank you.

 

  • MVP 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  742
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  



				for ( .@minute = 15; .@minute > 0; .@minute -= 5 ) {
					mapannounce .map$,"<Fabre Punch Event> Time Left "+.@minute+" Minute(s).",bc_all;
					if ( .@minute <= 5 ) {
					mapannounce .map$,"Fabre Punch -- TRIPLE POINTS SPREE! "+.@minute+" Minute(s) !",bc_all;
						.point_rate = 3; // 3x point
					}
					else if ( .@minute <= 10 ) {
					mapannounce .map$,"Fabre Punch -- DOUBLE POINTS SPREE! "+.@minute+" Minute(s) !",bc_all;
						.point_rate = 2;  // 2x point
					}
					sleep ( 5 * 15000 );

The x2 x3 is Workin Fine But

all monster has been killed is announce should be only Supre Fabre Right

http://imgur.com/a/4XAKC

 

  • i want the Event Warp Open until the Event is Done so Late Players can still can join the event
Edited by Bringer
Link to comment
Share on other sites

  • 0

  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2347
  • Joined:  10/28/11
  • Last Seen:  

On 3/6/2017 at 9:52 AM, Bringer said:

The x2 x3 is Workin Fine But

all monster has been killed is announce should be only Supre Fabre Right

http://imgur.com/a/4XAKC

  • i want the Event Warp Open until the Event is Done so Late Players can still can join the event

https://pastebin.com/BFqnbP1q

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  742
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

On 11/24/2022 at 2:57 PM, mastersancheszue said:

anyone can help me with this error?

fgvhfgvhccg.PNG

Create table

 

CREATE TABLE IF NOT EXISTS `e_fabre_punch_rank` (

`cid` INT(11) UNSIGNED NOT NULL DEFAULT '0',

`name` NVARCHAR(30) NOT NULL DEFAULT '',

`point` INT(11) SIGNED NOT NULL DEFAULT '0',

`rank` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0',

PRIMARY KEY (`cid`)

) ENGINE=MyISAM;

  • Love 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  13
  • Reputation:   0
  • Joined:  11/23/22
  • Last Seen:  

On 11/25/2022 at 4:10 PM, Bringer said:

Create table

 

CREATE TABLE IF NOT EXISTS `e_fabre_punch_rank` (

`cid` INT(11) UNSIGNED NOT NULL DEFAULT '0',

`name` NVARCHAR(30) NOT NULL DEFAULT '',

`point` INT(11) SIGNED NOT NULL DEFAULT '0',

`rank` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0',

PRIMARY KEY (`cid`)

) ENGINE=MyISAM;

Hello sir. im not familliar with this what should i put on it. can i have example of it sorry for being dumb

 

Link to comment
Share on other sites

  • -1

  • Group:  Forum Manager
  • Topic Count:  282
  • Topics Per Day:  0.06
  • Content Count:  3123
  • Reputation:   1617
  • Joined:  03/26/12
  • Last Seen:  

Can you please refrain from tagging specific forum members in a post requesting them to do things for you. If you have something that needs to be directed at a specific forum member, PM them.

  • Upvote 1
Link to comment
Share on other sites

  • -1

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  742
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

8 hours ago, Akkarin said:

Can you please refrain from tagging specific forum members in a post requesting them to do things for you. If you have something that needs to be directed at a specific forum member, PM them.

im sorry about that but emistry alwys said to me on facebook post on forum ^_^

Link to comment
Share on other sites

  • -1

  • Group:  Forum Manager
  • Topic Count:  282
  • Topics Per Day:  0.06
  • Content Count:  3123
  • Reputation:   1617
  • Joined:  03/26/12
  • Last Seen:  

Yes, post on the forum for support from the community, not post on the forum and tag him to get his attention. If he's told you to post on the forum it should be quite clear that he's not going to help you himself at that moment in time.

Link to comment
Share on other sites

  • -1

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  742
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

9 hours ago, Akkarin said:

Yes, post on the forum for support from the community, not post on the forum and tag him to get his attention. If he's told you to post on the forum it should be quite clear that he's not going to help you himself at that moment in time.

the Author of that script is emistry

and i think there is no problem tagging forum member and i check the rules of th is section

im just suggesting fews add of that script he made it that's All Sir

Thank you

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...