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 - Force

Pages: 1 ... 13 14 [15] 16 17
211
mIRC/pawn Scripting / Re: killed
« on: July 13, 2008, 11:35:11 am »
Tanax what you posted was never the problem, your the one thats going off topic.

212
mIRC/pawn Scripting / Re: killed
« on: July 13, 2008, 01:52:04 am »
That would go under:

Code: [Select]
on *:SIGNAL:vcmp.event.kill:{

213
mIRC/pawn Scripting / Re: killed
« on: July 12, 2008, 10:30:07 pm »
If this is sansan they you need:

Code: [Select]
vcmp.echo $vcmp.hgetname(%idk) killed $vcmp.hgetname(%idd) $par($vcmp.deathreason($4))

Hope that helps :D

214
mIRC/pawn Scripting / Re: Lock Car for sansan
« on: July 12, 2008, 04:53:16 pm »
Hehe, thanks Addy :)

215
mIRC/pawn Scripting / Lock Car for sansan
« on: July 12, 2008, 03:49:12 pm »
Hey,

Quick question, I was wondering whether or not there is a vcmp.lock alias for sansan or something similar to lock cars in the server?

Thanks,

216
mIRC/pawn Scripting / Re: Code Bakasam
« on: July 12, 2008, 11:58:06 am »
 :-X

Just to add to this I have made some amazing scripts for mIRC and how many times have you seen me post asking for help? 3 maybe 4 times, Tanax, you need to LEARN not just ask everyone, if you keep asking everyone in the end they will just stop helping and say..."Do it yourself".

Bye!

217
mIRC/pawn Scripting / Re: Working votekick for sansan
« on: July 12, 2008, 11:54:11 am »
Anywhere really, as long as it doesn't come under teh commands area. There should be a ;--- misc alias' thingy, shove it under there :)

218
mIRC/pawn Scripting / Re: Working votekick for sansan
« on: July 12, 2008, 12:52:33 am »
Well, I throughly tested it, and it is for sansan don't forget, I would not have released it if it didnt work, you may have just put things in the wrong place ;)

219
mIRC/pawn Scripting / Working votekick for sansan
« on: July 10, 2008, 08:40:08 pm »
Hey

(Please move this topic if its not in the right place ;) )

I have just spent the last 4 nearly 5 hours doing a votekick for sansan, if anyone wants it then feel free :)

Code: [Select]

on *:SIGNAL:vcmp.event.gamecmd {

    elseif ($2 == !votekick) {
      if ($hget(vcmp,loggedin. $+ %id) < 2) { vcmp.adminmsg %id You must be Admin Level 2 or higher to attempt this command. }
      elseif ($hget(VoteKick,started) == started) { vcmp.adminmsg %id There is already a vote kick in progress! }
      else {
        !hadd -m VoteKick started started
        !hadd -m ToKick $vcmp.hgetname($3) voting
        vcmp.adminchat Vote Kick started for $vcmp.hgetname($3) $+ , ID: $3 - Votes Required: 3 - Reason: $iif($4-,$v1,None) $+ , By Admin: $iif($1,$v1,Unknown)
        vcmp.adminchat Auto Recieved one vote! Two more are needed, type !vote <player id being kicked> to do so         
        vcmp.vkick $3 $vcmp.hgetname(%id) $4-
      }
    }
    elseif ($2 == !vote) {
      if ($hget(VotedTable,$vcmp.hgetname(%id)) == voted) { vcmp.adminmsg %id You have already voted! }
      elseif ($hget(ToKick,$vcmp.hgetname($3)) != voting) { vcmp.adminmsg %id This player is not up for a vote kick! }
      else {
        !hadd -m VotedTable $vcmp.hgetname(%id) voted
        vcmp.vkick $3 $vcmp.hgetname(%id) $4-
      }
    }

Code: [Select]
;--- Vote Kick Alias'

alias vcmp.votes !return $iif($readini(vcmp.votes.ini,VOTES,$vcmp.hgetname($1)),$v1,0)

alias vcmp.vkick {
  if ($vcmp.votes($1) >= 2) {
    !writeini -n vcmp.votes.ini VOTES $vcmp.hgetname($1) 3
    vcmp.adminchat Kicking $vcmp.hgetname($1) - Reason: Vote - Kicked $+ , By Admin: $iif($2,$v1,Unknown)
    vcmp.kick $1
    hdel ToKick $1
  }
  else {
    !writeini -n vcmp.votes.ini VOTES $vcmp.hgetname($1) $calc($vcmp.votes($1) + 1)
    vcmp.adminchat $vcmp.votes($1) $+ /3 votes recieved!
  }
}

Code: [Select]
on *:SIGNAL:vcmp.event.part:{

  if ($hget(ToKick,$2) == voting) {
    vcmp.adminchat Vote Kick cancelled for $2 $+ , Reason: Left the server!
    !writeini -n vcmp.votes.ini VOTES $2 0
    remini vcmp.votes.ini VOTES $2
    hdel ToKick $2
    hfree VoteKick
    hdel VotedTable $2
  }

220
Ohh right, well never mind because i fixed it now :D :D :D...

The problem was for some reason in the script there was  NO { } 's on the adminmsg %id You must be Level "blah" to use this command!

Now I am happy :D

221
Lol, I will try that then  :-\

Edit: Is there any way to tell whether or not it is corrupted? I can open it fine and every one's levels are 1 apart from mine and my mate's.

222
Thanks jack but what makes it even more confusing is that the mirc script editor says that there are no errors  :-X ???

223
Yeah I have checked the other's and its doing it for every single command...the only one that does check it is !slap.... It's weird...

224
Hey,

I am having major, major, problems. I thought I was ready to release my server but it seems not. I am using sansan and I have a lot of admin commands, however, its not even checking your level, its letting registered and non registered players use all admin commands apart from !slap...

Any ideas?

225
mIRC/pawn Scripting / Re: Question Please Help
« on: July 03, 2008, 09:27:46 pm »
that's the same thing for what he wants to do .-.

Lol I know but mine looks like
  • instead of [ 0 ]

Pages: 1 ... 13 14 [15] 16 17