Top

Xbox Room Snippet


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Dec 30, 2008
Last Updated  Dec 30, 2008
Tags  gamer  irc  live  mirc  room  tag  xbox 

Introduction

i made this for fun. you just paste it into the remotes and right click>join #Xbox>Register #Xbox.

it will ask for the person to give there Gamer Tag on join and ells them Hello. it will set the gamer tag to a var of there name

has flood protection. and will notice the user if they do not enter a Gamer Tag.

***COMMANDS***

!GT <gamer tag>
!MGT (will say your Gamer Tag on the channel)

Grab the Code

on !*:JOIN:#Xbox:{
  msg # Welcome to #Xbox $nick
  .notice $nick to set your gamer tag please type !GT <gamer tag>
}
menu * {
  Xbox Chan
  .Join #Xbox: join #Xbox
  .Register #Xbox: cs register #Xbox $$?="What Do You Want The Password To Be?" xbox live
}
on *:TEXT:!GT*:#Xbox:{
  if (!$($+(%,GTF),3)) {
    set -u3 $+(%,GTF) on
    if (!$2) { .notice $nick NO GAMER TAG WAS ENTERED! }
    else {
      set %$nick $2
      .notice $nick Your gamer tag has been set to ( $+ $2 $+ )
      .notice $nick To View you Gamter Tag. type !MGT in the Channel.
    }
  }
}
on *:TEXT:!MGT*:#Xbox:{
  if (!$($+(%,MGTF),3)) {
    set -u3 $+(%,MGTF) on
    msg # $nick $+ 's Gamer Tag Is %$nick 
  }
}

Comments

  (1)  RSS
napa182
Comments: 1,455
 
mIRC Snippet:  Xbox Room Snippet
Posted on Dec 31, 2008 12:05 am
on ur var
Code:
set %$nick $2

you should use
Code:
set $+(%,$nick) $2

and maybe put them under one on text event.

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom