PtokaX forum

Development Section => Your Developing Problems => Topic started by: Typhoon on 14 December, 2003, 00:57:58

Title: ipinfo ? !
Post by: Typhoon on 14 December, 2003, 00:57:58
i am trying to make a info script which logs to a file!

but on the !ipinfo  i get info of my own IP and nick not the currents users ip ....
its the same no matter what ip i write, maybe someone have a solution ...


elseif (cmd=="!ipinfo") and (user.bOperator) then
s,e,userName = strfind( data, "%b<>%s+%S+%s+(%S+)" )
if userName == nil then
user:SendPM(Bot, "You must enter the IP you want info about!")
else
local userinfo = "\r\n\r\n"
readfrom("txt/userinfo.lst")
while 1 do
local line = read()
if (line == nil) then
break
elseif strfind(strlower(line), strlower(user.sName),1 ,1) then
userinfo = userinfo.." "..line.."\r\n"
end
end
readfrom()
    user:SendPM(Bot, "\r\n\r\n       IPInfo for "..user.sName.." "..userinfo.."\r\n       With current IP : "..user.sIP)
end
return 1

** Typhoon?
Title:
Post by: pHaTTy on 14 December, 2003, 01:01:41
user.sName is about the person that used the command

ie

if cmd == "me" then
user:SendPM(user.sName)


for someone else it has to become a string

so user.sName will be userName

im not to sure that will work tho
Title:
Post by: Typhoon on 14 December, 2003, 01:04:45
i fixed it  by changing this line


user:SendPM(Bot, "\r\n\r\n       IPInfo for "..userName.." "..userinfo.."\r\n       With current IP : "..userIP)


  and thx for the quick info again m8