Vice City Multiplayer

VC:MP 0.3 => mIRC/pawn Scripting => Topic started by: gta5 on March 25, 2009, 05:33:02 am

Title: nogoto for fbs?
Post by: gta5 on March 25, 2009, 05:33:02 am
how would you make /c nogoto on/off for fbs?

thanks
Title: Re: nogoto for fbs?
Post by: Amenine on March 25, 2009, 07:19:44 am
Here try this..
First You need to identify that player has nogoto on or off..so change ur goto command with this one..
Code: [Select]
elseif ($3 == goto) {
    if ($FBS.lin($1, $2) == $null) vcmp.msg $1 $2 You must either register or be logged in as Admin Level 2.
    elseif ($FBS.Level($1, $2) < 2) vcmp.msg $1 $2 Error, You need to be at least level 2 to use this command.
    elseif (!$4) vcmp.msg $1 $2 Error - Correct Syntax: /c $3 <Nick/ ID>
    elseif ($hget(gotooff,$vcmp.name( $1, $2 )) == off ) vcmp.say $1 $vcmp.name( $1, $2 ) $+ 's goto is currently disabled.
    elseif ($vcmp.getid($1, $4) == 255) vcmp.msg $1 $2 Error: Invalid Nick-Name
    elseif ($FBS.rwarstatus($FBS.ID($4)) == 1) vcmp.msg $1 $2 This person is taking part in the roof fighters mingame, wait until the round is over.   
    else {
      vcmp.say $1 ** Sending:[ $vcmp.name($1, $2) $chr(93) to:[ $vcmp.name($1, $FBS.ID($4)) $chr(93)
      vcmp.msg $1 $2 District:[ $+ $vcmp.area($1, $FBS.ID($4)) $+ $chr(93)
      vcmp.setlocation $1 $2 $calc($vcmp.location($1, $FBS.ID($4)).x + 2) $vcmp.location($1, $FBS.ID($4)).y $calc($vcmp.location($1, $FBS.ID($4)).z - 1.12)
    }
  }

And for doing nogoto on or off..
Code: [Select]
elseif ($3 == nogoto) {
    if ($FBS.lin($1, $2) == $null) vcmp.msg $1 $2 You must either register or be logged in as Admin Level 2.
    elseif ($FBS.Level($1, $2) < 2) vcmp.msg $1 $2 Error, You need to be at least level 2 to use this command.
    elseif ($hget(gotooff,$vcmp.name( $1, $2 )) == off ) vcmp.say $1 $vcmp.name( $1, $2 ) $+ 's has /c nogoto on.
    elseif ($4 == on) {
      if ($hget(gotooff,$vcmp.name( $1, $2 )) == off ) vcmp.msg $1 $vcmp.name( $1, $2 ) - your goto is already disabled.
      else {
        vcmp.msg $1 $2 NoGoto - Old Setting:Off , New Setting:On
        vcmp.msg $1 $2 All players cannot teleport to you now
        !hadd -m gotooff $vcmp.name( $1, $2 ) off
      }
    }
    elseif ($4 == off) {
      if ($hget(gotooff,$vcmp.name( $1, $2 )) != off ) vcmp.msg $1 your goto is already enabled.
      else {
        vcmp.msg $1 $2 NoGoto - Old Setting:On , New Setting:Off
        vcmp.msg $1 $2 All players can teleport to you now
        !hdel gotooff $vcmp.name( $1, $2 )
      }
    }
  }
Although i didnt use FBS but tried to make one..hope it will work..
Note:Untested

Regards
Amenine
Title: Re: nogoto for fbs?
Post by: Darkness on March 25, 2009, 08:15:06 am
to GUS? pelase  ;D
Title: Re: nogoto for fbs?
Post by: Amenine on March 25, 2009, 04:23:46 pm
Here for GUS..Works 100%.. :P
Here replace your old goto command with this one!!
Code: [Select]
elseif ($2 == goto) {
    if ($vcmp.cmdcheck(!goto,%id) == fail) !halt
    elseif (!$3) vcmp.msg %id Correct Syntax: $2 <name>
    elseif (%a == -1) vcmp.msg %id Error - Absent ID/Name
    elseif ($hget(gotooff,$vcmp.name(%a)) == off ) vcmp.say $vcmp.name(%a) $+ 's goto is currently disabled.
    elseif ($vcmp.cost(%b) > $vcmp.cash(%b)) vcmp.msg %id Error - You need atleast $ $+ $bytes($vcmp.cost(%b),b) to use this command
    else {
      vcmp.cash- %b $vcmp.cost(%b)
      vcmp.setcont %a 0
      vcmp.msg %id [Transferring]: $chr(91) %name $chr(93) $+ , [To]: $chr(91) $vcmp.name(%a) $chr(93)
      .timer 1 1 vcmp.announce %id Teleporting.
      .timer 1 2 vcmp.announce %id Teleporting..
      .timer 1 3 vcmp.goto %b %a
      .timer 1 3 vcmp.setcont %a 1
    }
  }

And for doing nogoto on or off!!
Code: [Select]
elseif ($2 == nogoto) {
    if ($vcmp.cmdcheck(!goto,%id) == fail) !halt
    elseif (!$3) vcmp.msg %id Correct Syntax: /c nogoto <on/off?
    elseif ($3 == $chr(79)) vcmp.msg %id Absent parameter on/off
    elseif ($hget(gotooff,$vcmp.name(%a)) == off ) vcmp.say $vcmp.name(%a) $+ 's has /c nogoto on.
    elseif ($3 == on) {
      if ($hget(gotooff,$vcmp.name(%id)) == off ) vcmp.msg $vcmp.name(%id) - your goto is already disabled.
      else {
        vcmp.msg %id NoGoto - Old Setting:Off , New Setting:On
        vcmp.msg %id All players cannot teleport to you now
        !hadd -m gotooff $vcmp.name(%id) off
      }
    }
    elseif ($3 == off) {
      if ($hget(gotooff,$vcmp.name(%id)) != off ) vcmp.msg %id your goto is already enabled.
      else {
        vcmp.msg %id NoGoto - Old Setting:On , New Setting:Off
        vcmp.msg %id All players can teleport to you now
        !hdel gotooff $vcmp.name(%id)
      }
    }
  }

Cheers
Amenine
Title: Re: nogoto for fbs?
Post by: Darkness on March 26, 2009, 03:18:03 am
Thx u very much Amenine  ;)
Title: Re: nogoto for fbs?
Post by: Amenine on March 26, 2009, 08:30:41 am
No problem  ;)
Title: Re: nogoto for fbs?
Post by: gta5 on March 27, 2009, 12:16:07 am
 Thanks alot for trying Amenine, butthe command didnt work properly, I can turn the nogoto on but it wont turn off. If any one else can help me it would be appreciated

thanks
-gta5
Title: Re: nogoto for fbs?
Post by: [XT]ariel[X] on October 24, 2009, 08:36:10 pm
and for WSV or PsyScript??
Title: Re: nogoto for fbs?
Post by: Edward_RD on October 27, 2009, 06:38:22 am
Hya all..

NOGOTO FOR FBS ...

elseif ($3 == nogoto) {
if ($4) {
if ($4 == on) {
if ($hget(FBS.Nogoto,$vcmp.name($1, $2)) == on) vcmp.msg $1 $2 Error: You have you your nogoto allready on!
else {
hadd -m FBS.Nogoto $vcmp.name($1, $2) on
vcmp.msg $1 $2 NoGoto - Old Setting: Off , New Setting: On
vcmp.msg $1 $2 All players cannot teleport to you now.
}
}
elseif ($4 == off) {
if (!$hget(FBS.Nogoto,$vcmp.name($1, $2))) vcmp.msg $1 $2 Error: You have you your nogoto allready off!
else {
hdel FBS.Nogoto $vcmp.name($1, $2)
vcmp.msg $1 $2 NoGoto - Old Setting: On , New Setting: Off
vcmp.msg $1 $2 All players can teleport to you now.
}
}
else vcmp.msg $1 $2 Error: Correct Syntax: /c $3
}
else vcmp.msg $1 $2 Error: Correct Syntax: /c $3
}


  elseif ($3 == goto) {
    if ($FBS.lin($1, $2) == $null) vcmp.msg $1 $2 You must either register or be logged in.
    elseif (!$4) vcmp.msg $1 $2 Error - Correct Syntax: /c $3
    elseif ($vcmp.getid($1, $4) == 255) vcmp.msg $1 $2 Error: Invalid Nick-Name
    elseif ($FBS.rwarstatus($FBS.ID($4)) == 1) vcmp.msg $1 $2 This person is taking part in the roof fighters mingame, wait until the round is over.   
elseif ($hget(FBS.Nogoto,$vcmp.name($1, $FBS.ID($4))) == on) vcmp.msg $1 $2 This person has his nogoto on.
    else {
      vcmp.msg $1 $2 Teleporting you to:[ $vcmp.name($1, $FBS.ID($4)) $chr(93)
      vcmp.msg $1 $2 District:[ $+ $vcmp.area($1, $FBS.ID($4)) $+ $chr(93)
      vcmp.setlocation $1 $2 $calc($vcmp.location($1, $FBS.ID($4)).x + 2) $vcmp.location($1, $FBS.ID($4)).y $calc($vcmp.location($1, $FBS.ID($4)).z - 1.12)
    }
  }


Must add goto and  nogoto ..

Some bug , let me know .

Regars.
Edward_RD
Title: Re: nogoto for fbs?
Post by: Sephiroth on October 28, 2009, 12:13:23 am
Hya all..

NOGOTO FOR FBS ...

elseif ($3 == nogoto) {
if ($4) {
if ($4 == on) {
if ($hget(FBS.Nogoto,$vcmp.name($1, $2)) == on) vcmp.msg $1 $2 Error: You have you your nogoto allready on!
else {
hadd -m FBS.Nogoto $vcmp.name($1, $2) on
vcmp.msg $1 $2 NoGoto - Old Setting: Off , New Setting: On
vcmp.msg $1 $2 All players cannot teleport to you now.
}
}
elseif ($4 == off) {
if (!$hget(FBS.Nogoto,$vcmp.name($1, $2))) vcmp.msg $1 $2 Error: You have you your nogoto allready off!
else {
hdel FBS.Nogoto $vcmp.name($1, $2)
vcmp.msg $1 $2 NoGoto - Old Setting: On , New Setting: Off
vcmp.msg $1 $2 All players can teleport to you now.
}
}
else vcmp.msg $1 $2 Error: Correct Syntax: /c $3
}
else vcmp.msg $1 $2 Error: Correct Syntax: /c $3
}


  elseif ($3 == goto) {
    if ($FBS.lin($1, $2) == $null) vcmp.msg $1 $2 You must either register or be logged in.
    elseif (!$4) vcmp.msg $1 $2 Error - Correct Syntax: /c $3
    elseif ($vcmp.getid($1, $4) == 255) vcmp.msg $1 $2 Error: Invalid Nick-Name
    elseif ($FBS.rwarstatus($FBS.ID($4)) == 1) vcmp.msg $1 $2 This person is taking part in the roof fighters mingame, wait until the round is over.  
elseif ($hget(FBS.Nogoto,$vcmp.name($1, $FBS.ID($4))) == on) vcmp.msg $1 $2 This person has his nogoto on.
    else {
      vcmp.msg $1 $2 Teleporting you to:[ $vcmp.name($1, $FBS.ID($4)) $chr(93)
      vcmp.msg $1 $2 District:[ $+ $vcmp.area($1, $FBS.ID($4)) $+ $chr(93)
      vcmp.setlocation $1 $2 $calc($vcmp.location($1, $FBS.ID($4)).x + 2) $vcmp.location($1, $FBS.ID($4)).y $calc($vcmp.location($1, $FBS.ID($4)).z - 1.12)
    }
  }


Must add goto and  nogoto ..

Some bug , let me know .

Regars.
Edward_RD



#1. this topic query has already been answered.
#2. you stole this script.
#3. please gtfo.
Title: Re: nogoto for fbs?
Post by: Edward_RD on October 28, 2009, 01:34:13 am
Hya  all

1: I didn't knew .
2: I never stole gta5's nogoto :S
3: Sephiroth die
4: I don't need steal scripts .. I am the best :D


Regars
Edward_RD
Title: Re: nogoto for fbs?
Post by: gta5 on October 28, 2009, 02:18:34 am
ye he didnt steal mine and amenines was bugged so I edited his anf fixed it :P
Title: Re: nogoto for fbs?
Post by: Jc18 on October 28, 2009, 02:22:57 am
he doesnt stole he just copy and paste copy and paste copy and paste copy and paste
Title: Re: nogoto for fbs?
Post by: Edward_RD on October 28, 2009, 02:24:36 am
removed due to abuse
Title: Re: nogoto for fbs?
Post by: Squida on October 28, 2009, 02:57:32 am
edward is the best!
Title: Re: nogoto for fbs?
Post by: Sephiroth on October 28, 2009, 06:49:56 am
Hya all..

LOL .. !!!!  Jcgay8 .... SHUT UP PLEASE..

JC18 IS A NAB, ONLY CAN DO SPAM AND ADMIN ABUSE ... SEPHI TOO

FUCK NABS

LEARN SCRIPTER OR SOMEHING ...


Regars
Edward_RD


Motherfucker, I had to help you load your script, you couldn't even get it to connect...

you ain't shit for a scripter, you're nothing in this community, gtfo and go fuck your sister some more.

basically Edward_RD, I'm trying to say you suck, and I think you should kill yourself.


JC18 IS A NAB, ONLY CAN DO SPAM AND ADMIN ABUSE ... SEPHI TOO

FUCK NABS

LEARN SCRIPTER OR SOMEHING ...


As for that shit: Your main reason for being banned from everywhere is your spamming and advertising, I don't spam. you're lucky gta5 let your ass back to paradise DM after 8 chances.

Secondly, I taught you how to script, right from connecting it to your server to basic FBS. You thought the main script was fbs.users.ini for about 3 months. then after spamming me for weeks about "how i load prop script" "If u no help mi mi will T.T crying" I showed you how to load the props..

then various PM spam for months about

"sephi unban mi from xe you corrup ADMIN"

"sep help mi, mi script bugged!"

"OMG please respond T.T Crying."

"help mi to advertise mi server sephi"

among many many other quotes I just don't feel like typing since I wanna curbstomp you right now just thinking about it..






This is ULK.Sephiroth wishing you a successful and pain-free suicide.


P.S: gtfo.
Title: Re: nogoto for fbs?
Post by: Edward_RD on October 28, 2009, 03:00:10 pm
Hya all..

LOL 3 month ago I was a Nab .... I only have 3  month on VC-MP and I am the best :P

Sephiroth is a NAB fuck ADMIN ABUSE:

Session Start: Sat Sep 05 18:11:33 2009
Session Ident: Sephiroth
[18:11] Session Ident: Sephiroth (GTANet, Edward_RD) ([email protected])
[18:11] <Sephiroth> not now
[18:11] <Sephiroth> busy
01[18:11] <Edward_RD> lol
01[18:11] <Edward_RD> 4-4 when u want  continu , say me
[18:12] <Sephiroth> alright
[18:12] <Sephiroth> edward
01[18:12] <Edward_RD> ?
[18:12] <Sephiroth> seriously, why can't we just leave everything in the past
[18:12] <Sephiroth> I know you hate me
[18:13] <Sephiroth> and I'm sorry fr everything I ever did to you
01[18:13] <Edward_RD> I don't hate  u
01[18:13] <Edward_RD> the problem is,   u was  my friend and  now  u tell with gta5  and  betrayed me
01[18:14] <Edward_RD> now  gta5  hate my
[18:14] <Sephiroth> ...
[18:14] <Sephiroth> and I'm sorry fr everything I ever did to you
[18:14] <Sephiroth> for*
01[18:14] <Edward_RD> because u was talking wrong  about  me
01[18:14] <Edward_RD> mmm ok
[18:14] <Sephiroth> can we just not be enemies anymore
01[18:14] <Edward_RD> ok
[18:14] <Sephiroth> :D
01[18:15] <Edward_RD> and why u banned  me  from XE the first time  for the reason : spawnkill , dead evade
01[18:15] <Edward_RD> that is lies
[18:15] <Sephiroth> you spammed
01[18:15] <Edward_RD> also I did , advertisement and  u banned me for  dead evade
[18:15] <Sephiroth> I never banned you for dead evade
[18:15] <Sephiroth> !!??!
01[18:15] <Edward_RD> YES... U WANT  SEE?
[18:15] <Sephiroth> wrong admin
01[18:16] <Edward_RD> when u banned  me the first time , went  for the reason:  dead evade , spawnkiller
01[18:16] <Edward_RD> and that is lies
[18:16] <Sephiroth> !!!
01[18:16] <Edward_RD> I only did , advertisement
[18:16] <Sephiroth> I'm sorry for everything
[18:16] <Sephiroth> I'm looking into your ban appeal
[18:16] <Sephiroth> I will unban you now if you agree
[18:16] <Sephiroth> never to spam
[18:16] <Sephiroth> again
[18:16] <Sephiroth> can you do that
[18:17] <Sephiroth> just please don't advertise or spam
[18:17] <Sephiroth> and  I'll unban you now
01[18:17] <Edward_RD> men , if  u want  no problem ... u can ban me  but
01[18:17] <Edward_RD> no for the reason dead evade
01[18:17] <Edward_RD> spawnkill
01[18:17] <Edward_RD> only  advertisement
[18:17] <Sephiroth> I know, i said I'm sorry
01[18:17] <Edward_RD> ok



FUCK ADMIN ABUSE, I am not banned in XE, and you are banning me IP ... MY NAME IS BANNED IN XE , can you remenber HeAD said me ???

Session Start: Tue Sep 22 23:38:47 2009
Session Ident: #VC-MP.RD
02[23:38] * Disconnected
02[23:38] * Attempting to rejoin channel #VC-MP.RD
03[23:38] * Rejoined channel #VC-MP.RD
03[23:38] * Topic is '12'Gracias 12por entrar al canal 4VC-MP.RD4 , del server RDserverRD4 , el mejor y mas completo server , respeta las reglas , Usa !commands para tu lista de comandos, usa !say para hablar en el server desde aqui , para mas información visitanos a1 www.RDserverRD.es.kz 4 IP:1 94.23.26.143:5192'
03[23:38] * Set by Edward_RD on Fri Sep 18 14:22:20
01[23:38] <Edward_RD> lol
01[23:39] <Edward_RD> who read?
[23:39] <Sephiroth> [11:39pm]« HeAD » you can evade the bans, you have done so before, why not just evade and play legit so you dont get kick/banned anymore
01[23:39] <Edward_RD> I writed all our logs
03[23:39] * Impact sets mode: +qo Edward_RD Edward_RD
01[23:39] <~Edward_RD> HEAD
01[23:39] <~Edward_RD> WHO HAVE A  proof?
01[23:39] <~Edward_RD> anyone
01[23:39] <~Edward_RD> so that is  shit
[23:39] <HeAD> edward, i told you before i dont care if you evade bans, just stop breaking the rules
[23:39] <HeAD> lol
01[23:39] <~Edward_RD> u only are talkinh
01[23:39] <~Edward_RD> but I  have a proof
[23:39] <Sephiroth> edward..
[23:40] <Sephiroth> you don't listen well
01[23:40] <~Edward_RD> sephith say... I did that bad
[23:40] <Sephiroth> we try to get a point across
[23:40] <Sephiroth> and you ignore us
[23:41] <Sephiroth> the point is, head is in charge, and he banned you after a long long series of bans, unbans, tempbans, evasion etc.... So because of this, you are permanently banned from all Xtreme Elites Servers.
[23:41] <HeAD> edward just evade your ban and play legit
[23:41] <HeAD> edward just evade your ban and play legit
[23:41] <HeAD> edward just evade your ban and play legit
[23:41] <Sephiroth> loooool
[23:41] <HeAD> top admin says its ok, just dont tell anyone :D
[23:42] <Sephiroth> edward, what head means is evade your ban
[23:42] <Sephiroth> but don't use edward_rd
[23:42] <Sephiroth> use a new name
[23:42] <HeAD> yeah, you must become a new person
[23:42] <Sephiroth> and don't break any rules
[23:42] <HeAD> no more spamming, flooding, spawnkilling, no rule breaking
[23:42] <HeAD> and nobody will catch you evading
[23:42] <Sephiroth> just be a good, clean, legit player
[23:42] <Sephiroth> but change your name
[23:42] <HeAD> yes, because honestly we want more players, we dont want to ban people who will play clean
01[23:43] <~Edward_RD> men
[23:43] <Sephiroth> and don't let ANYONE know who you are
01[23:43] <~Edward_RD> no sorry ,
01[23:43] <~Edward_RD> no sorry
01[23:43] <~Edward_RD> I never  did  that
[23:43] <Sephiroth> no sorry?
01[23:43] <~Edward_RD> only spammer
01[23:43] <~Edward_RD> I need use my name
[23:43] <Sephiroth> ok fine forget it
01[23:43] <~Edward_RD> all ADMIN are abuse of my
[23:43] <Sephiroth> it's all in the past
[23:43] <Sephiroth> ok fine forget it
[23:43] <Sephiroth> what matters is now
01[23:43] <~Edward_RD> MAN
01[23:43] <~Edward_RD> LISTEN
01[23:43] <~Edward_RD> LISTEN
[23:43] <Sephiroth> ...
[23:43] <HeAD> well... the edward_rd name = RULE BREAKER EVADER to admins
[23:44] <HeAD> so tough time getting everyone who has banned you to forget about it
01[23:44] <~Edward_RD> IF I AM A SPAWNKILLER , DEAD VADER , LIER ,  MY MOTHER CAN DIE RIGHT NOW..
[23:44] <Sephiroth> when you play in XE from now on, just don't use "Edward_RD"
[23:44] <Sephiroth> EDWARD, NONE OF THAT STUFF MATTERS
01[23:44] <~Edward_RD> MAN... FUCK I ONLY DID SPAM
01[23:44] <~Edward_RD> WHEN I WAS ADMIN
01[23:44] <~Edward_RD> IN GTA5-PARADISE
[23:44] <Sephiroth> WE DON'T CARE IF YOU CRASHED THE SERVER
[23:44] <Sephiroth> EDWARD, NONE OF THAT STUFF MATTERS
[23:44] <Sephiroth> when you play in XE from now on, just don't use "Edward_RD"
[23:44] <HeAD> change your name to darE_wad
[23:45] <Sephiroth> rofl no
[23:45] <Sephiroth> he'll think of new name
01[23:45] <~Edward_RD> no , if I want play in XE i NEED  USE Edward_RD because I am not a corrupt
[23:45] <HeAD> ok



REMENBER THIS ???  Sephiroth  ??  WHY ARE U BANNING MY IP ??
Title: Re: nogoto for fbs?
Post by: Devian on October 28, 2009, 06:52:21 pm
Seph se la come!!!
Title: Re: nogoto for fbs?
Post by: Edward_RD on October 28, 2009, 08:38:52 pm
Hya all ..

I know, everybody hate Sephiroth, is a NAB ADMIN abuse jaja


Regars
Edward_RD
Title: Re: nogoto for fbs?
Post by: gta5 on October 29, 2009, 12:23:12 am
 yes u are banned on XE u evaded. Head said before any even small infringment of the rules on your part will make u perm banned. Let me remind all of the most recent ban appeals you have made were denied so you are not allowed to join the server. That's all im saying here as I won't participate in an argument such as this on a public forum.


P.S Please keep on topic (ye thats nogoto for FBS if u forgot)
Title: Re: nogoto for fbs?
Post by: Squida on October 29, 2009, 12:55:32 am
edward is bester scripter

he script mi pene es grande
Title: Re: nogoto for fbs?
Post by: Sephiroth on October 29, 2009, 03:04:38 am
Hya all..

LOL 3 month ago I was a Nab .... I only have 3  month on VC-MP and I am the best :P

Sephiroth is a NAB fuck ADMIN ABUSE:

Session Start: Sat Sep 05 18:11:33 2009
Session Ident: Sephiroth
[18:11] Session Ident: Sephiroth (GTANet, Edward_RD) ([email protected])
[18:11] <Sephiroth> not now
[18:11] <Sephiroth> busy
01[18:11] <Edward_RD> lol
01[18:11] <Edward_RD> 4-4 when u want  continu , say me
[18:12] <Sephiroth> alright
[18:12] <Sephiroth> edward
01[18:12] <Edward_RD> ?
[18:12] <Sephiroth> seriously, why can't we just leave everything in the past
[18:12] <Sephiroth> I know you hate me
[18:13] <Sephiroth> and I'm sorry fr everything I ever did to you
01[18:13] <Edward_RD> I don't hate  u
01[18:13] <Edward_RD> the problem is,   u was  my friend and  now  u tell with gta5  and  betrayed me
01[18:14] <Edward_RD> now  gta5  hate my
[18:14] <Sephiroth> ...
[18:14] <Sephiroth> and I'm sorry fr everything I ever did to you
[18:14] <Sephiroth> for*
01[18:14] <Edward_RD> because u was talking wrong  about  me
01[18:14] <Edward_RD> mmm ok
[18:14] <Sephiroth> can we just not be enemies anymore
01[18:14] <Edward_RD> ok
[18:14] <Sephiroth> :D
01[18:15] <Edward_RD> and why u banned  me  from XE the first time  for the reason : spawnkill , dead evade
01[18:15] <Edward_RD> that is lies
[18:15] <Sephiroth> you spammed
01[18:15] <Edward_RD> also I did , advertisement and  u banned me for  dead evade
[18:15] <Sephiroth> I never banned you for dead evade
[18:15] <Sephiroth> !!??!
01[18:15] <Edward_RD> YES... U WANT  SEE?
[18:15] <Sephiroth> wrong admin
01[18:16] <Edward_RD> when u banned  me the first time , went  for the reason:  dead evade , spawnkiller
01[18:16] <Edward_RD> and that is lies
[18:16] <Sephiroth> !!!
01[18:16] <Edward_RD> I only did , advertisement
[18:16] <Sephiroth> I'm sorry for everything
[18:16] <Sephiroth> I'm looking into your ban appeal
[18:16] <Sephiroth> I will unban you now if you agree
[18:16] <Sephiroth> never to spam
[18:16] <Sephiroth> again
[18:16] <Sephiroth> can you do that
[18:17] <Sephiroth> just please don't advertise or spam
[18:17] <Sephiroth> and  I'll unban you now
01[18:17] <Edward_RD> men , if  u want  no problem ... u can ban me  but
01[18:17] <Edward_RD> no for the reason dead evade
01[18:17] <Edward_RD> spawnkill
01[18:17] <Edward_RD> only  advertisement
[18:17] <Sephiroth> I know, i said I'm sorry
01[18:17] <Edward_RD> ok



FUCK ADMIN ABUSE, I am not banned in XE, and you are banning me IP ... MY NAME IS BANNED IN XE , can you remenber HeAD said me ???

Session Start: Tue Sep 22 23:38:47 2009
Session Ident: #VC-MP.RD
02[23:38] * Disconnected
02[23:38] * Attempting to rejoin channel #VC-MP.RD
03[23:38] * Rejoined channel #VC-MP.RD
03[23:38] * Topic is '12'Gracias 12por entrar al canal 4VC-MP.RD4 , del server RDserverRD4 , el mejor y mas completo server , respeta las reglas , Usa !commands para tu lista de comandos, usa !say para hablar en el server desde aqui , para mas información visitanos a1 www.RDserverRD.es.kz 4 IP:1 94.23.26.143:5192'
03[23:38] * Set by Edward_RD on Fri Sep 18 14:22:20
01[23:38] <Edward_RD> lol
01[23:39] <Edward_RD> who read?
[23:39] <Sephiroth> [11:39pm]« HeAD » you can evade the bans, you have done so before, why not just evade and play legit so you dont get kick/banned anymore
01[23:39] <Edward_RD> I writed all our logs
03[23:39] * Impact sets mode: +qo Edward_RD Edward_RD
01[23:39] <~Edward_RD> HEAD
01[23:39] <~Edward_RD> WHO HAVE A  proof?
01[23:39] <~Edward_RD> anyone
01[23:39] <~Edward_RD> so that is  shit
[23:39] <HeAD> edward, i told you before i dont care if you evade bans, just stop breaking the rules
[23:39] <HeAD> lol
01[23:39] <~Edward_RD> u only are talkinh
01[23:39] <~Edward_RD> but I  have a proof
[23:39] <Sephiroth> edward..
[23:40] <Sephiroth> you don't listen well
01[23:40] <~Edward_RD> sephith say... I did that bad
[23:40] <Sephiroth> we try to get a point across
[23:40] <Sephiroth> and you ignore us
[23:41] <Sephiroth> the point is, head is in charge, and he banned you after a long long series of bans, unbans, tempbans, evasion etc.... So because of this, you are permanently banned from all Xtreme Elites Servers.
[23:41] <HeAD> edward just evade your ban and play legit
[23:41] <HeAD> edward just evade your ban and play legit
[23:41] <HeAD> edward just evade your ban and play legit
[23:41] <Sephiroth> loooool
[23:41] <HeAD> top admin says its ok, just dont tell anyone :D
[23:42] <Sephiroth> edward, what head means is evade your ban
[23:42] <Sephiroth> but don't use edward_rd
[23:42] <Sephiroth> use a new name
[23:42] <HeAD> yeah, you must become a new person
[23:42] <Sephiroth> and don't break any rules
[23:42] <HeAD> no more spamming, flooding, spawnkilling, no rule breaking
[23:42] <HeAD> and nobody will catch you evading
[23:42] <Sephiroth> just be a good, clean, legit player
[23:42] <Sephiroth> but change your name
[23:42] <HeAD> yes, because honestly we want more players, we dont want to ban people who will play clean
01[23:43] <~Edward_RD> men
[23:43] <Sephiroth> and don't let ANYONE know who you are
01[23:43] <~Edward_RD> no sorry ,
01[23:43] <~Edward_RD> no sorry
01[23:43] <~Edward_RD> I never  did  that
[23:43] <Sephiroth> no sorry?
01[23:43] <~Edward_RD> only spammer
01[23:43] <~Edward_RD> I need use my name
[23:43] <Sephiroth> ok fine forget it
01[23:43] <~Edward_RD> all ADMIN are abuse of my
[23:43] <Sephiroth> it's all in the past
[23:43] <Sephiroth> ok fine forget it
[23:43] <Sephiroth> what matters is now
01[23:43] <~Edward_RD> MAN
01[23:43] <~Edward_RD> LISTEN
01[23:43] <~Edward_RD> LISTEN
[23:43] <Sephiroth> ...
[23:43] <HeAD> well... the edward_rd name = RULE BREAKER EVADER to admins
[23:44] <HeAD> so tough time getting everyone who has banned you to forget about it
01[23:44] <~Edward_RD> IF I AM A SPAWNKILLER , DEAD VADER , LIER ,  MY MOTHER CAN DIE RIGHT NOW..
[23:44] <Sephiroth> when you play in XE from now on, just don't use "Edward_RD"
[23:44] <Sephiroth> EDWARD, NONE OF THAT STUFF MATTERS
01[23:44] <~Edward_RD> MAN... FUCK I ONLY DID SPAM
01[23:44] <~Edward_RD> WHEN I WAS ADMIN
01[23:44] <~Edward_RD> IN GTA5-PARADISE
[23:44] <Sephiroth> WE DON'T CARE IF YOU CRASHED THE SERVER
[23:44] <Sephiroth> EDWARD, NONE OF THAT STUFF MATTERS
[23:44] <Sephiroth> when you play in XE from now on, just don't use "Edward_RD"
[23:44] <HeAD> change your name to darE_wad
[23:45] <Sephiroth> rofl no
[23:45] <Sephiroth> he'll think of new name
01[23:45] <~Edward_RD> no , if I want play in XE i NEED  USE Edward_RD because I am not a corrupt
[23:45] <HeAD> ok



REMENBER THIS ???  Sephiroth  ??  WHY ARE U BANNING MY IP ??


YES I "REMENBER" THAT, THE CONVERSATIONS DID GO DOWN, BUT YOU DID EDIT THOSE LOGS A BIT, YOU'RE THE ONE WHO APOLOGIZED TO US SO MUCH, NOT ME LMFAO, I HAVE NO REASON TO APOLOGIZE TO YOU. capslockftw!


Seph se la come!!!


Devian mama tiene un buen culo!
Title: Re: nogoto for fbs?
Post by: Edward_RD on October 29, 2009, 03:28:59 am
Hya all ..

LOLOL .... I no edited that  stupid ... or you need HeAD come here and say the same too ???

FUCK NAB ADMIN ABUSE..

TODOS ODIAN A SEPHIROTH .. EL SE LA COME JAJAJA

Regars
Edward_RD
Title: Re: nogoto for fbs?
Post by: Sephiroth on October 29, 2009, 03:36:46 am
Hya all ..

LOLOL .... I no edited that  stupid ... or you need HeAD come here and say the same too ???

FUCK NAB ADMIN ABUSE..

TODOS ODIAN A SEPHIROTH .. EL SE LA COME JAJAJA

Regars
Edward_RD

lol kid, get a fucking life you troll.
Title: Re: nogoto for fbs?
Post by: MrAcmering on October 29, 2009, 04:37:33 pm
ah edward... if you evade the bans ure just been banned and sephiroth in not a "fucking admin abuse"

and don't spam!!!!!
Title: Re: nogoto for fbs?
Post by: Edward_RD on October 30, 2009, 02:57:06 am
Hya all..

I am no evading , because I am not banned, ONLY  I CAN'T JOIN WITH Edward_RD..

HeAD the owner , said me  ... u will evade just don't join with Edward_RD.

Regars
Edward_RD
Title: Re: nogoto for fbs?
Post by: Sephiroth on October 30, 2009, 03:22:35 am
Hya all..

I am no evading , because I am not banned, ONLY  I CAN'T JOIN WITH Edward_RD..

HeAD the owner , said me  ... u will evade just don't join with Edward_RD.

Regars
Edward_RD

Yes, but what you seem to forget is that was BEFORE you fucked up and spawnkilled with your new alias.

There are to be no more offtopic replies to this thread and I hereby apologize for all off-topic posts I've made here.
Title: Re: nogoto for fbs?
Post by: Edward_RD on October 30, 2009, 03:28:26 am
Hya all..

Can you STOP?  FUCK ADMIN ABUSE .. KID  .... LIER .... LMAO

Regars
Edward_RD
Title: Re: nogoto for fbs?
Post by: [XT]ariel[X] on October 30, 2009, 05:43:48 am
cya

Edward_RD, serphiroth not abusing, serphiroth exelent admin, you abusing in you server, you I've ban in you server, Razon: Noob

Noob not is razon of ban.

   
Edward is a liar. Screen:

(http://img229.imageshack.us/img229/2585/mentiradeedwardrd.jpg)

In Español:

Serphiroth no abusa de los comandos, es un exelente administrador, Edward abusa
contantemente en su server, Edward_RD me ban una ves y de razon puso: Noob su server es 24//7(24 horas al dia, 7 dias de la semana) Nadie entra por lo noob y forma de actuar en vcmp, constantemente
miente aca una de sus grandes mentiras:

(http://img229.imageshack.us/img229/2585/mentiradeedwardrd.jpg)

No hablo muy bien ingles por eso hable poco xD.
Title: Re: nogoto for fbs?
Post by: Edward_RD on October 30, 2009, 12:52:23 pm
Hya all..

1) aprende ingles..
2) te hise el ban por que estabas criticando mi server y haciendo spam..
3) al igual vos me echas de tu server ... Sin razones.
4) WindLord lo considero como uno de mis mejores amigo, noc si el ami.. Es buen amigo mio.

5) Eres demasiado NAB ... Creido y mala actitud que por eso estas banned en XE, solo es que evades... Con otro nombre.

6) pruebas.. : http://rdserverrd.foroslatin.com/discuciones-generales-f10/abusos-del-servidor-americano-t20.htm

I am just writing spanish, just reply for this guy NAB,,

Regars
Edward_RD
Title: Re: nogoto for fbs?
Post by: MrAcmering on October 30, 2009, 03:52:38 pm


Edward_RD, serphiroth not abusing, serphiroth exelent admin,


yea, sephiroth is a good admin... edward the only noob evader
Title: Re: nogoto for fbs?
Post by: [XT]ariel[X] on October 30, 2009, 04:44:19 pm
spam??? spam??

pero si tu llenas mi server de spam tu viste una semana o 2 diciendo
Entren a mi server RDserverRD IP: nose , Nombre: RDserver y algo mas
y siempre que se llena ases lo mismo ganate la vida onradamente
no se gana con spam mas encima lo niegas yo formatie mi pc
por eso no tengo las pruebas del spam y del swear y todo eso.

In inglish:

   
Spam??? spam?

but if you fill my spam server you saw a week or 2 saying
Come to my server IP RDserverRD: nose, Name: RDserver y algo mas
and subject to the same ganate aces full life onradamente
not won over with spam more you deny me my pc formatio
so I have no evidence of spam and swear and all that.
Title: Re: nogoto for fbs?
Post by: [XT]ariel[X] on October 30, 2009, 04:48:18 pm
y mas esos abusos no los ise yo son de los administradores, estaban probando los comandos cada ves que alguien es noob en admin, prueba los comandos
todos lo hacen.... y tu fuiste el que me ban de tu server y no pusiste razon
tu haces el error y me ban ese dia por que tabamos peliando no por spam
y peliar no es para ban, nadie entra a tu server por lo ignorante y noob que eres
esa es la verdad no es por que no es conosido si lo conocen
lo publicas en todo google, vcmp, paguinas de vcmp...
mi server no lo publico no soy un noob prefiero que mis usuarios entren solos
eso es mejor a que te ganes el odio y dejes de enemigo a todo vcmp
mejor largate a sa-mp a lo mejor a ya encuentras mejores amigos que aca
ya que no tienes ninguno y tratas de decir que windlord, force, tommis, Vrocker,
bakasan, son tus amigos...

In inglish:
and more such abuses are not yo ise of directors, were testing the commands every time someone is a noob in admin, test commands
everybody does it .... and you were the ban me from your server and put no reason
you make the mistake and that day ban that movie tabamos not spam
and movie not to ban, nobody comes to your server so that you are ignorant noob
that is the truth is that if it is not known conosido
the public at all google, vcmp, Paguina of vcmp ...
my server not public'm not a noob I prefer my users enter their own
that's better in that you earn the hatred and stop all enemy vcmp
largate best to sa-mp and perhaps to find best friends here
because you have none and trying to say that windlord, force, tommis, Vrocker,
Bakas, are your friends ...
Title: Re: nogoto for fbs?
Post by: Greg on October 30, 2009, 06:47:12 pm
Forum rules & guidelines

Welcome to the Vice City Multiplayer forums.

Before you start posting at our forums or even registering, we'd like you to read our forum rules. Breaking the rules may result in a ban, so please be sure to read them.

....
....

  • English only. - We would like to point out that in these forums, only English posts and topics are allowed. As English is the most widely used and known language on earth. If you do post topics on other languages, please translate them. If there is no translation, your topic will be closed.

....
....

No comment... :-X
Title: Re: nogoto for fbs?
Post by: Jc18 on October 31, 2009, 04:53:31 am
im a admin abuse too because i always kick edward with stupids reason for ban evade :D
Title: Re: nogoto for fbs?
Post by: [XT]ariel[X] on November 01, 2009, 10:45:08 am
cya!

Scripts Nogoto for FBS in the Code :).

Code: (Goto) [Select]
  elseif ($3 == goto) {
    if ($FBS.lin($1, $2) == $null) vcmp.msg $1 $2 You must either register or be logged in.
    elseif (!$4) vcmp.msg $1 $2 Error - Correct Syntax: /c $3
    elseif ($vcmp.getid($1, $4) == 255) vcmp.msg $1 $2 Error: Invalid Nick-Name
    elseif ($FBS.rwarstatus($FBS.ID($4)) == 1) vcmp.msg $1 $2 This person is taking part in the roof fighters mingame, wait until the round is over. 
    elseif ($hget(FBS.Nogoto,$vcmp.name($1, $FBS.ID($4))) == on) vcmp.msg $1 $2 This person has his nogoto on.
    else {
      vcmp.msg $1 $2 Teleporting you to:[ $vcmp.name($1, $FBS.ID($4)) $chr(93)
      vcmp.msg $1 $2 District:[ $+ $vcmp.area($1, $FBS.ID($4)) $+ $chr(93)
      vcmp.setlocation $1 $2 $calc($vcmp.location($1, $FBS.ID($4)).x + 2) $vcmp.location($1, $FBS.ID($4)).y $calc($vcmp.location($1, $FBS.ID($4)).z - 1.12)
    }
  }

Code: (Nogoto) [Select]
elseif ($3 == nogoto) {
  if ($4) {
    if ($4 == on) {
      if ($hget(FBS.Nogoto,$vcmp.name($1, $2)) == on) vcmp.msg $1 $2 Error: You have you your nogoto allready on!
  else {
    hadd -m FBS.Nogoto $vcmp.name($1, $2) on
    vcmp.msg $1 $2 NoGoto - Old Setting: Off , New Setting: On
    vcmp.msg $1 $2 All players cannot teleport to you now.
    }
  }
  elseif ($4 == off) {
    if (!$hget(FBS.Nogoto,$vcmp.name($1, $2))) vcmp.msg $1 $2 Error: You have you your nogoto allready off!
    else {
      hdel FBS.Nogoto $vcmp.name($1, $2)
      vcmp.msg $1 $2 NoGoto - Old Setting: On , New Setting: Off
      vcmp.msg $1 $2 All players can teleport to you now.
      }
    }
    else vcmp.msg $1 $2 Error: Correct Syntax: /c $3
  }
  else vcmp.msg $1 $2 Error: Correct Syntax: /c $3
}

Bye all!!
Title: Re: nogoto for fbs?
Post by: Mattz on November 05, 2009, 06:36:35 pm
Quote
Welcome to the Vice City Multiplayer forums.

Before you start posting at our forums or even registering, we'd like you to read our forum rules. Breaking the rules may result in a ban, so please be sure to read them.

....
....

English only. - We would like to point out that in these forums, only English posts and topics are allowed. As English is the most widely used and known language on earth. If you do post topics on other languages, please translate them. If there is no translation, your topic will be closed.

You missed these two sentences Greg :P
Title: Re: nogoto for fbs?
Post by: thijn on November 05, 2009, 11:28:23 pm
In inglish:
and more such abuses are not yo ise of directors, were testing the commands every time someone is a noob in admin, test commands
everybody does it .... and you were the ban me from your server and put no reason
you make the mistake and that day ban that movie tabamos not spam
and movie not to ban, nobody comes to your server so that you are ignorant noob
that is the truth is that if it is not known conosido
the public at all google, vcmp, Paguina of vcmp ...
my server not public'm not a noob I prefer my users enter their own
that's better in that you earn the hatred and stop all enemy vcmp
largate best to sa-mp and perhaps to find best friends here
because you have none and trying to say that windlord, force, tommis, Vrocker,
Bakas, are your friends ...
Thats not an translations, Thats what we call a "Google Translation Phail"
Title: Re: nogoto for fbs?
Post by: [XT]ariel[X] on November 06, 2009, 05:20:11 am
in the rules speak, wait in the forum using lenguaje ingles or using traductor...
Title: Re: nogoto for fbs?
Post by: [XT]ariel[X] on November 06, 2009, 05:22:19 am
· English only. - We would like to point out that in these forums, only English posts and topics are allowed. As English is the most widely used and known language on earth. If you do post topics on other languages, please translate them. If there is no translation, your topic will be closed.


:)


Links for all Rules in the forum and guideliner:

http://forum.vicecitymultiplayer.com/index.php?topic=16.0
Title: Re: nogoto for fbs?
Post by: thijn on November 06, 2009, 12:56:12 pm
Yeah, Thats what I mean.
I didnt saw a proper translation. Just a Google Translator Fail....
Title: Re: nogoto for fbs?
Post by: Edward_RD on November 07, 2009, 02:02:03 am
Hya all..

LOL..... SHUT UP PLEASE.... Edward_RD is on Dom.Rep :) the best country....

MMmm... I am in 15 days vacation jejej

and Ariel = Suck my dick and learn english jajaja

Sephiroth gay is a ADMIN abuse , only typing shit..

Regards.
Edward_RD
Title: Re: nogoto for fbs?
Post by: Mattz on November 07, 2009, 02:15:35 am
Locked.

Not staying to topic.