mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jun 2006
Posts: 13
T
TheDuke Offline OP
Pikka bird
OP Offline
Pikka bird
T
Joined: Jun 2006
Posts: 13
on *:TEXT:!Roulette*:#: { /notice $nick http://www.torncity.com/russianroulette.php?step=request2&bet=$2&userID=$3 }


this is what i got.. but when i type
!roulette 100 13973
it does not paste the 100 or the 13973 in the places of $2 or $3 i also tried $$2.. but that didn't help me either what am i doing wrong ??

Joined: Dec 2002
Posts: 1,541
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Dec 2002
Posts: 1,541
try this:

Code:
on *:TEXT:!Roulette*:#/notice $nick http://www.torncity.com/russianroulette.php?step=request2&bet= $+ $2 $+ &userID= $+ $3


You could also do:

Code:
on *:TEXT:!Roulette*:#/notice $nick $+(http://www.torncity.com/russianroulette.php?step=request2&bet=,$2,&userID=,$3)


sometimes I just prefer to use the older method $1 $+ $2 (personal habit I guess) so take your pic smile


Those who fail history are doomed to repeat it
Joined: Jun 2006
Posts: 13
T
TheDuke Offline OP
Pikka bird
OP Offline
Pikka bird
T
Joined: Jun 2006
Posts: 13
thanks the first one worked the second one with the , didn't work :P

Joined: Dec 2002
Posts: 1,541
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Dec 2002
Posts: 1,541
awesome smile glad to be of help smile


Those who fail history are doomed to repeat it

Link Copied to Clipboard