
Aeron
Retired Staff-
Posts
968 -
Joined
-
Last visited
Everything posted by Aeron
-
Slapping ppl to death in a car gets you killed on other ppls screen, while you drive around with -999 health, all other players see your car at the point you 'died' and can enter your car and driver around normally on there screen. On your screen the car flipping/crashing/warping/stretching all over Vice City until you get out & die.
-
Maybe this helps: "To continue follow thise instructions: 1. DEATHMATCH IS NOT READY 2. DEATHMATCH IS NOT READY 3. Press CTRL+A, and contrinue: DEATHMATCH IS NOT READY DEATHMATCH IS NOT READY 4. Click Here To download!"
-
I miss Break32, GoingDown (The orginal!), Destruction Derby, Hotring (I still pwn all of u guys!)
-
"When it's done" - Duke Nukem Forever
-
nope, didnt work Thats because it needs a Server ID ('$1') on *:QUIT:#: { mta.text %server_id $nick left the channel! } on *:JOIN:#: { mta.text %server_id $nick joined the channel! } Go into the variables tab and add this: %server_id 5 Or whatever server you want the output on (it now does on server 5)
-
:oops: :evil: :evil: :evil: :evil: :oops: :evil: :oops: :oops: :evil: :evil: :evil: :evil: :oops: :evil: :oops: :evil: :evil: :evil: :evil: :evil: :evil: :oops: :oops: Happy Bday
-
...
-
A community demanding for a BETA release to 'find bugs' will play it and not report bugs. By the time they find a bug they gonna say the software 5UCK5 C0CK5 IN H3LL!!!111. Blame it, ruin it, and leave the community.
-
this is way better then MY GoingDown map. /me slaps Hedning
-
Some questions to the oldies (Original community members)
Aeron replied to Vicer/Spitfire's question in Client
We had patience. -
on *:SIGNAL:mta.command: { if ($3 == !alarm) { %a = $readini($scriptdir $+ alarm.ini,alarm,$mta.vehicle($1,$2)) if (($mta.vehicle($1,$2).name == foot) || ($mta.vehicle($1,$2).name == Unknown)) mta.msg $1 $2 Error - you need to be in a car elseif (($4 == on) && (%a == $null)) { mta.say $1 Car Alarm Activated !writeini " $+ $scriptdir $+ alarm.ini" alarm $mta.vehicle($1,$2) $mta.name($1,$2) } elseif (($4 == off) && (%a == $mta.name($1,$2)) { mta.say $1 Car Alarm Deactivated !remini " $+ $scriptdir $+ alarm.ini" alarm $mta.vehicle($1,$2) } } } on *:SIGNAL:mta.enter:{ %a = $readini($scriptdir $+ alarm.ini,alarm,$mta.vehicle($1,$2)) if ((%a != $null) && (%a != $mta.name($1,$2)) { mta.say $1 $mta.name($1,$2) Has triggered an car alarm $+(!.timeralarm.,$1,.,$2) 1 1 mta.slap $1 $2 } } on *:SIGNAL:mta.exit: { $+(!.timeralarm.,$1,.,$2) off }
-
Everybody do this: 1. Click 'Post reply' 2. CTRL+V (Or a other way to paste from clipboard, and NO EDITING OF THE CONTENT) 3. Post! Mine: unsigned int i; for (i = 0; i < MATRIX_X*MATRIX_Y; i++) bitmap2[i] = 0; unsigned int x,y; for (x = 0; x < MATRIX_X; x++) { for (y = 0; y < SAMPLES_PER_COL; y++) { I was programming some shit (Credits of this idea go out to the flabber.nl forums)
-
http://home.deds.nl/~aeron/scripts/3.0/Admin-System.mrc
-
My Break map would instantly win.
-
Also ini's can't handle []'s as topic's, because the ini format is: [Topic] item=value They get parsed as '~' if you use them as topic. Weldee, as far i can see in your script, your imposter name must be a existing member with admin status.
-
My stats scripts only save records/death stats if a person finished. If you handle every map as a deathmatch, nobody crosses the finish line and so it doesn't record stats.
-
Ask yourself: How many finish lines does a deathmatch map have?
-
MTA:SA on *:SIGNAL:mta.command:{ var %a = $iif($4,$iif($mta.nick($1,$4) != Unknown,$4,$mta.getid($1,$4)),$2) if ($3 == !addmember) { !writeini " $+ $scriptdir $+ nickserv.ini" members $mta.nick($1,%a) 1 mta.text $1 Member $mta.nick($1,%a) Added Succefully! } } MTA:VC on *:SIGNAL:mta.command:{ var %a = $iif($4,$iif($mta.name($1,$4) != Unknown,$4,$mta.getid($1,$4)),$2) if ($3 == !addmember) { !writeini " $+ $scriptdir $+ nickserv.ini" members $mta.name($1,%a) 1 mta.say $1 Member $mta.name($1,%a) Added Succefully! } }
-
Try: on *:SIGNAL:mta.join: { mta.say $1 Events: %mta.event. [ $+ $1 ] } on *:SIGNAL:mta.command: { if ($3 == !eventchange) { if ($4 != $null) { %mta.event. [ $+ $1 ] = $read($scriptdir $+ events.txt,$4) } else { %mta.event. [ $+ $1 ] = $read($scriptdir $+ events.txt,$rand(1,$lines($scriptdir $+ events.txt))) } } mta.say $1 Events: %mta.event. [ $+ $1 ] }
-
lil toady means, anyware on the internet, you can not give up a URL to your local hard drive. 1. Make the *.rtf 2. Upload to the internet 3. C&P the url
-
Hint: put the code in the REMOTE tab of the script editor: Do this when you have focus on the main window: 1. ALT+R 2. ALT+R (Yes twice, not once, twice) 3. Paste the code: on *:SIGNAL:mta.join: { mta.say $1 Events: %mta.event. [ $+ [ $1 ] ] } on *:SIGNAL:mta.command: { if ($3 == !eventchange) { if ($4 != $null) { %mta.event. [ $+ [ $1 ] ] = $read($scriptdir $+ events.txt,$4) } else { %mta.event. [ $+ [ $1 ] ] = $read($scriptdir $+ events.txt,$rand(1,$lines($scriptdir $+ events.txt))) } } mta.say $1 Events: %mta.event. [ $+ [ $1 ] ] } 4. Worky