Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - mbalee

Pages: [1]
1
mIRC/pawn Scripting / IRC commands in game
« on: February 19, 2008, 09:27:05 pm »
Hai!

Need this cmds! Can u help me? :) examp: !reconnect , !connect, !disconnect , !clear (chat window) , !unload vcmp.mrc , !load vcmp.mrc

:S I know how this is very hard, but need.

Thanks, Balee!

2
mIRC/pawn Scripting / Help! Server Xtras
« on: February 12, 2008, 08:24:48 pm »
Hi! I have 2 little questions. Please help. :)

1. How may I make it that the nickname may not contain @,/,&,%,*,! and other characters? (kick)

2. How I may have it read through only the parenthesis and the characters in him?
exampl: [VcMp]Testplayer the nick and only need [VcMp]

I hope for it myself expressed it understandable. :)  :-\

Thanks!  :-*

Cya, Balee

3
mIRC/pawn Scripting / Only 1 little question! :D
« on: January 27, 2008, 02:02:18 pm »
Na...
I have vehicle name and ids list.

Code: [Select]
  elseif ($2 == !car) || ($2 == !pmcar) {
    if ($vcmp.cmdcheck(!car,%id) == fail) !halt   
    elseif (%a == -1) vcmp.msg %id Error - Absent ID/Name
    elseif ($vcmp.vehicle(%a,id) == 0) vcmp.msg %id Error - $vcmp.name(%a) is currently on foot!
    else vcmp.msg %id Vehicle - Name: (WHAT IS NEEDED FOR HIS PLACE?) , ID: $+($chr(91),$vcmp.vehicle(%a,id),$chr(93)) , Damage: $+($chr(91),$calc(100 - $vcmp.vehicle(%id,hp)),%,$chr(93)) $+
  }

my cars name list in vcmp.data.ini

Code: [Select]
... [cars]
0=On_Foot
130=Landstalker
131=Idaho
132=Stinger
133=Linerunner
134=Perennial
135=Sentinel
136=Rio
137=Fire-Truck
138=Trashmaster
139=Stretch
140=Manana
141=Infernus
...

Help! Thanks!

4
mIRC/pawn Scripting / mIRC Bot
« on: January 26, 2008, 07:30:24 pm »
Now please help me!! :D

for mIRC Bot Tutorial.

How create and/or use irc bot??? HELP! :-*

exampl:
Code: [Select]
<MyBot69> [ID] Player: ja, the bot is good ;p
<MyBot69> ** [ID] Player killed Player2 (Weapon)
<MyBot69> ** [ID] Player has left the server (Timeout)
<MyBot69> [ID] Player: f**kin crash...
... :D

5
mIRC/pawn Scripting / Need little help!
« on: December 01, 2007, 06:12:36 pm »
  elseif ($2 == !players) || ($2 == !pmplayers) {
    if ($vcmp.cmdcheck(!players,%id) == fail) !halt
    else {
      var %aa = 0,%bb,%cc,%dd
      while (%aa <= 50) {
        if ($vcmp.level(%aa) >= 1) {
          if (!%bb) %bb = $vcmp.name(%aa) $+ ;
          elseif ($numtok(%bb,32) <= 7) %bb = %bb  $vcmp.name(%aa) $+
          elseif (!%cc) %cc = $vcmp.name(%aa) $+
          elseif ($numtok(%cc,32) <= 7) %cc = %cc  $vcmp.name(%aa) $+
          elseif (!%dd) %dd = $vcmp.name(%aa) $+
          elseif ($numtok(%dd,32) <= 7) %dd = %dd  $vcmp.name(%aa) $+
        }
        !inc %aa
      }
      if (%bb) {
        vcmp.cmdsay $2 %id Online Players: *$calc...?????????
        if (%cc) vcmp.cmdsay $2 %id %cc
        if (%dd) vcmp.cmdsay $2 %id %dd
      }
    }
  }


*What write here???

Pages: [1]