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.


Messages - [NoN]Toiletduck

Pages: 1 ... 3 4 [5]
61
Nothing happens? Have you added scripts?

62
mIRC/pawn Scripting / Re: !getall....
« on: December 26, 2008, 02:03:01 am »
There is one problem with this script.  It does not check vcmp.cmdcheck so you cannot put a restriction on what level players are allowed to use it.

Like this:

Code: [Select]
}
  elseif ($2 == !getall) {
    if ($vcmp.cmdcheck(!getall,%id) == fail) !halt
    vcmp.say Getting all players to Admin %name
    var %a = 0
    while (%a < 20) {
      if ($vcmp.name(%a) != Unknown) vcmp.setlocation %a $vcmp.location(%id)
      !inc %a
    }

Only you must add !getall to vcmp.cmdlevel.ini and then put the minimum level of players that are allowed to use it.

63
mIRC/pawn Scripting / Announce for GUS 9.0
« on: December 23, 2008, 09:23:28 pm »
I have tried to change the !say and !count scripts for GUS and I have been unsuccessful.  Correct me if I am wrong: vcmp.announce %id $3- Will only show to
the player that typed it.
So my dilemma is that when I do vcmp.announce %id $2 $3 it is all bugged.
My script looks like this:

Code: [Select]
}
  elseif (!count* iswm $2) || (!pmcount* iswm $2) {
    if ($vcmp.cmdcheck(!count,%id) == fail) !halt
    else {
      .timer 1 1 vcmp.announce $2 %id Get Ready!
      .timer 1 2 vcmp.announce $2 %id 3
      .timer 1 3 vcmp.announce $2 %id 2
      .timer 1 4 vcmp.announce $2 %id 1
      .timer 1 5 vcmp.announce $2 %id Go!
    }

Code: [Select]
}
  elseif ($2 == !say) || ($2 == !pmsay) {
    if ($vcmp.cmdcheck(!say,%id) == fail) !halt
    elseif (!$3) vcmp.msg %id Error - Missing Information, $2 <text>
    else vcmp.announce %id $2 $3-
  }



Well with the scripts like that, this happens:


64
mIRC/pawn Scripting / Please help
« on: December 09, 2008, 01:48:12 pm »
Hi guys I'm trying some scripts on GUS.
I want to have an ingame command that allows you to apply to be set to the next level or whatever.
It is similar to bug report except with a different cmd name.
It isn't really working at all so can someone please tell me what is wrong with the script?



65
mIRC/pawn Scripting / Re: [0.4Dev] Nvidia RPG 5.0 Public Server
« on: November 17, 2008, 05:40:04 pm »
etc..* not ect

Pages: 1 ... 3 4 [5]