Top online module?

Results 1 to 19 of 19
  1. #1
    Account Upgraded | Title Enabled! PiECLOUD is offline
    MemberRank
    Apr 2015 Join Date
    237Posts

    Top online module?

    any top online module here I can use?
    I saw modules but links are dead and it's not also working.
    please.


  2. #2

    Re: Top online module?

    show me links of dead modules.. ill find u working links.

  3. #3
    if(!caffeine) continue; leorond is offline
    MemberRank
    Jul 2012 Join Date
    Czech RepublicLocation
    491Posts

    Re: Top online module?

    For website?

  4. #4
    Account Upgraded | Title Enabled! PiECLOUD is offline
    MemberRank
    Apr 2015 Join Date
    237Posts

    Re: Top online module?

    Quote Originally Posted by KarLi View Post
    show me links of dead modules.. ill find u working links.
    i tried 2009x2014 top online module but i got error when executing query.
    the download links works on firefox i was using chrome that time.
    this is the only top online module i found
    Quote Originally Posted by leorond View Post
    For website?
    yes

  5. #5
    if(!caffeine) continue; leorond is offline
    MemberRank
    Jul 2012 Join Date
    Czech RepublicLocation
    491Posts

    Re: Top online module?

    For what website? Mucor? Enemy Mu Web? DMN?

  6. #6
    Account Upgraded | Title Enabled! PiECLOUD is offline
    MemberRank
    Apr 2015 Join Date
    237Posts

    Re: Top online module?

    Quote Originally Posted by leorond View Post
    For what website? Mucor? Enemy Mu Web? DMN?
    MuCore. i'm 100% sure you can't help me.

  7. #7
    if(!caffeine) continue; leorond is offline
    MemberRank
    Jul 2012 Join Date
    Czech RepublicLocation
    491Posts

    Re: Top online module?

    HERE

    You've got the download link and all the necessary information.

  8. #8
    Account Upgraded | Title Enabled! PiECLOUD is offline
    MemberRank
    Apr 2015 Join Date
    237Posts

    Re: Top online module?

    Quote Originally Posted by leorond View Post
    HERE

    You've got the download link and all the necessary information.
    Did you read the #4 post here?

  9. #9
    if(!caffeine) continue; leorond is offline
    MemberRank
    Jul 2012 Join Date
    Czech RepublicLocation
    491Posts

    Re: Top online module?

    So where is the problem? What it does or does not do?

    Describe your problem

  10. #10
    Account Upgraded | Title Enabled! PiECLOUD is offline
    MemberRank
    Apr 2015 Join Date
    237Posts

    Re: Top online module?

    Quote Originally Posted by leorond View Post
    So where is the problem? What it does or does not do?

    Describe your problem
    man stop trying.

  11. #11

    Re: Top online module?

    Quote Originally Posted by PiECLOUD View Post
    i tried 2009x2014 top online module but i got error when executing query.
    the download links works on firefox i was using chrome that time.
    this is the only top online module i found

    yes
    which error u get on 2009x2014 module

  12. #12
    Account Upgraded | Title Enabled! PiECLOUD is offline
    MemberRank
    Apr 2015 Join Date
    237Posts

    Re: Top online module?

    Quote Originally Posted by KarLi View Post
    which error u get on 2009x2014 module
    I finally make it work using the query
    but in the module it seems it's not recording the online hours.
    it is still 0.
    i was afk at lorencia for 1 hour and it didn't count.

    so this is my WZ_DISCONNECT_MEMB
    Code:
    USE [MuOnline]
    GO
    /****** Object:  StoredProcedure [dbo].[WZ_DISCONNECT_MEMB]    Script Date: 02/11/2016 09:55:15 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    
    
    ALTER PROCEDURE [dbo].[WZ_DISCONNECT_MEMB]
    
    
    @uid varchar(20)
    AS
    Begin
    
    
    BEGIN TRANSACTION
    
    
    SET NOCOUNT ON
    
    
    IF EXISTS ( SELECT memb___id FROM MEMB_STAT WITH (READUNCOMMITTED)
    WHERE memb___id = @uid )
    Begin
    UPDATE MEMB_STAT
    SET DisConnectTM = (getdate()), connectstat = 0, TH = 
    TH+(DATEDIFF(hh,ConnectTM,getdate())) WHERE memb___id = @uid
    End
    ELSE
    Begin
    INSERT INTO MEMB_STAT ( memb___id,DisConnectTM,connectstat,TH) valueS (
    @uid,
    (getdate()),
    0,
    0
    )
    End
    
    
    
    
    IF(@@Error <> 0 )
    ROLLBACK TRANSACTION
    ELSE
    COMMIT TRANSACTION
    
    
    SET NOCOUNT OFF
    End

  13. #13

  14. #14
    Account Upgraded | Title Enabled! PiECLOUD is offline
    MemberRank
    Apr 2015 Join Date
    237Posts

    Re: Top online module?

    thanks for the help KarLi
    but still it won't work.
    maybe it's the connectstat thing. I don't know.

    is @2009x2014 still here? he can help me.

  15. #15

    Re: Top online module?

    nope he aint here.

    try to drop memb_stat (delete that table)
    and re-create with this query
    Code:
    USE [MuOnline]
    GO
    
    /****** Object:  Table [dbo].[MEMB_STAT]    Script Date: 02/11/2016 22:28:48 ******/
    SET ANSI_NULLS ON
    GO
    
    SET QUOTED_IDENTIFIER ON
    GO
    
    CREATE TABLE [dbo].[MEMB_STAT](
    	[memb___id] [nvarchar](10) NOT NULL,
    	[ConnectStat] [tinyint] NULL,
    	[ServerName] [nvarchar](20) NULL,
    	[IP] [nvarchar](15) NULL,
    	[ConnectTM] [smalldatetime] NULL,
    	[DisConnectTM] [smalldatetime] NULL,
     CONSTRAINT [PK_MEMB_STAT] PRIMARY KEY CLUSTERED 
    (
    	[memb___id] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    
    GO
    
    ALTER TABLE [dbo].[MEMB_STAT] ADD  CONSTRAINT [DF_MEMB_STAT_ConnectTM]  DEFAULT (getdate()) FOR [ConnectTM]
    GO
    
    ALTER TABLE [dbo].[MEMB_STAT] ADD  CONSTRAINT [DF_MEMB_STAT_DisConnectTM]  DEFAULT (getdate()) FOR [DisConnectTM]
    GO
    might work cus works here.

  16. #16
    Account Upgraded | Title Enabled! PiECLOUD is offline
    MemberRank
    Apr 2015 Join Date
    237Posts

    Re: Top online module?

    Quote Originally Posted by KarLi View Post
    nope he aint here.

    try to drop memb_stat (delete that table)
    and re-create with this query
    Code:
    USE [MuOnline]
    GO
    
    /****** Object:  Table [dbo].[MEMB_STAT]    Script Date: 02/11/2016 22:28:48 ******/
    SET ANSI_NULLS ON
    GO
    
    SET QUOTED_IDENTIFIER ON
    GO
    
    CREATE TABLE [dbo].[MEMB_STAT](
        [memb___id] [nvarchar](10) NOT NULL,
        [ConnectStat] [tinyint] NULL,
        [ServerName] [nvarchar](20) NULL,
        [IP] [nvarchar](15) NULL,
        [ConnectTM] [smalldatetime] NULL,
        [DisConnectTM] [smalldatetime] NULL,
     CONSTRAINT [PK_MEMB_STAT] PRIMARY KEY CLUSTERED 
    (
        [memb___id] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    
    GO
    
    ALTER TABLE [dbo].[MEMB_STAT] ADD  CONSTRAINT [DF_MEMB_STAT_ConnectTM]  DEFAULT (getdate()) FOR [ConnectTM]
    GO
    
    ALTER TABLE [dbo].[MEMB_STAT] ADD  CONSTRAINT [DF_MEMB_STAT_DisConnectTM]  DEFAULT (getdate()) FOR [DisConnectTM]
    GO
    might work cus works here.
    what PHP did you use for this?

  17. #17

    Re: Top online module?

    i use on my template .php this :

    Code:
    <li><spa style="color: Red; text-shadow: 0 0 5px #FF0000;">&raquo;</spa> Server: <span><? if ($check=@fsockopen($onlineoffline,$srvport,$ERROR_NO,$ERROR_STR,(float)0.5)) <li>
    so it reads from another .php which is :
    Code:
    $Sdaaq = mssql_query("SELECT count(*) FROM MEMB_STAT WHERE ConnectStat = '1'");	 
    $online= mssql_result($Sdaaq, 0, 0);

  18. #18
    Account Upgraded | Title Enabled! PiECLOUD is offline
    MemberRank
    Apr 2015 Join Date
    237Posts

    Re: Top online module?

    Quote Originally Posted by KarLi View Post
    i use on my template .php this :

    Code:
    <li><spa style="color: Red; text-shadow: 0 0 5px #FF0000;">&raquo;</spa> Server: <span><? if ($check=@fsockopen($onlineoffline,$srvport,$ERROR_NO,$ERROR_STR,(float)0.5)) <li>
    so it reads from another .php which is :
    Code:
    $Sdaaq = mssql_query("SELECT count(*) FROM MEMB_STAT WHERE ConnectStat = '1'");     
    $online= mssql_result($Sdaaq, 0, 0);
    It's working now KarLi #15 post gave me a hint.
    Thanks a lot!

  19. #19

    Re: Top online module?

    awesome m8!


    Sent from my iPhone.



Advertisement