[FilterScript] b_Reaction System (Basic)
#1



Hello Guys,
Today I'm going to present to you a Very simple b_Reaction System which i made for 10 minutes. This script only required a_samp include. I know this isn't something special but, I'm doing this for a reason to regain my previous works which got deleted by mistake from Beta Testers!

How it works ?

Good question, simply when a reaction test appear you'r are going to type randm numbers and earn some cash & money!


Download

http://www.mediafire.com/file/4v550c...tionSystem.pwn
Bugs?

No bugs found, everything has been fully tested!
PS: As i said, all my previous works are deleted i have to publish it again and I don't do it just to earn reps , I will be happy with 0! Bad/Good comments are welcome, I'm just publising very old works!
Reply
#2

i know how you feel when you get deleted this by mistake,I test it and its very good basic system, GJ
Reply
#3

Quote:
Originally Posted by Hunud
View Post
i know how you feel when you get deleted this by mistake,I test it and its very good basic system, GJ
What should i do, I can't return it back! Thanks
Reply
#4

Nice, gj
Reply
#5

Quote:
Originally Posted by Eoussama
View Post
Nice, gj
Well, Thank you
Reply
#6

How to chnage reaction will show every 5-8 minutes and how to set money ?
Reply
#7

Quote:
Originally Posted by Hunud
View Post
How to chnage reaction will show every 5-8 minutes and how to set money ?
Find this in script, replace 4 with your own value!

Set your random cash here

Code:
 new randmoney = 2000 + random(10);
 GivePlayerMoney(playerid, randmoney);
Code:
#define TIMEPASS  (4)
Quote:
Originally Posted by IcePop
View Post
Simple but nice,
Thanks
Reply
#8

[QUOTE=Bolex_;3862166]Find this in script, replace 4 with your own value!

Set your random cash here

Code:
 new randmoney = 2000 + random(10);
 GivePlayerMoney(playerid, randmoney);
Code:
#define TIMEPASS  (4)
Thank you
Reply
#9

Pastebin please?
Reply
#10

Quote:
Originally Posted by ItzzWesty
View Post
Pastebin please?
Pastebin added!
Reply
#11

Works good, as you wrote basic
Reply
#12

Tnanks, yea basic
Reply
#13

Nice thank you bro +REP
Reply
#14

Quote:
Originally Posted by Electron123
View Post
Nice thank you bro +REP
I'm glad you like it, thanks for rep
Reply
#15

Why did you define "LEAST_NUMBER" if you aren't using it?
Why did you generate the random number like this:
Code:
NUMBER = LARGEST_NUMBER + random( LARGEST_NUMBER-LARGEST_NUMBER );
So first you take your LARGEST number, and then you add something else to it, making it even larger.
Also, random(LARGEST - LARGEST) = random(0), something you shouldn't do. See https://sampwiki.blast.hk/wiki/Random
Reply
#16

Quote:
Originally Posted by Infinity
View Post
Why did you define "LEAST_NUMBER" if you aren't using it?
Why did you generate the random number like this:
Code:
NUMBER = LARGEST_NUMBER + random( LARGEST_NUMBER-LARGEST_NUMBER );
So first you take your LARGEST number, and then you add something else to it, making it even larger.
Also, random(LARGEST - LARGEST) = random(0), something you shouldn't do. See https://sampwiki.blast.hk/wiki/Random
Totaly missed up this from mind, thank you
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)