[Plugin] Homes Plugin!?
#12
Finally i got what i wanted. The "nrows" was the correct one for me.


The ingame command calls the handle function:
function HandleHomeListCommand(a_split, player)
    
    a_List = g_Storage:GetList(player:GetName())
    for i=1,#a_List do
        local msg = cChatColor.Green .. i .. ". " .. a_List[i].Name .. " @ " .. a_List[i].World
        player:SendMessage(msg)
    end
    return true
end

Inside handle function the GetList function is called, which will return a nested table with all player data:
function cStorage:GetList( player )
    
    local a_List = {}
    local sql = "SELECT * FROM " .. PluginName .. " WHERE Player=\'" .. player .. "\'"
    for rowData in self.DB:nrows(sql) do
        a_List[#a_List+1] = rowData
    end
    return a_List
end

This is working well for me. Lets see what comes next Wink
Reply
Thanks given by:


Messages In This Thread
[Plugin] Homes Plugin!? - by nouseforname - 11-25-2014, 05:20 AM
RE: [Plugin] Homes Plugin!? - by NiLSPACE - 11-25-2014, 05:22 AM
RE: [Plugin] Homes Plugin!? - by sphinxc0re - 11-25-2014, 05:46 AM
RE: [Plugin] Homes Plugin!? - by xoft - 11-25-2014, 06:23 AM
RE: [Plugin] Homes Plugin!? - by nouseforname - 11-25-2014, 06:28 AM
RE: [Plugin] Homes Plugin!? - by xoft - 11-25-2014, 07:18 AM
RE: [Plugin] Homes Plugin!? - by nouseforname - 11-26-2014, 04:27 AM
RE: [Plugin] Homes Plugin!? - by xoft - 11-26-2014, 06:05 AM
RE: [Plugin] Homes Plugin!? - by xoft - 11-26-2014, 06:09 AM
RE: [Plugin] Homes Plugin!? - by nouseforname - 11-26-2014, 06:15 AM
RE: [Plugin] Homes Plugin!? - by nouseforname - 11-27-2014, 01:25 AM
RE: [Plugin] Homes Plugin!? - by xoft - 11-26-2014, 06:12 AM
RE: [Plugin] Homes Plugin!? - by xoft - 11-27-2014, 02:56 AM
RE: [Plugin] Homes Plugin!? - by nouseforname - 11-27-2014, 03:04 AM
[Plugin] Homes RC1 - by nouseforname - 11-27-2014, 05:44 AM
RE: [Plugin] Homes Plugin!? - by xoft - 11-27-2014, 06:27 AM
RE: [Plugin] Homes Plugin!? - by nouseforname - 11-27-2014, 01:41 PM
RE: [Plugin] Homes Plugin!? - by xoft - 11-27-2014, 06:44 AM
RE: [Plugin] Homes Plugin!? - by bearbin - 11-27-2014, 05:44 PM
RE: [Plugin] Homes Plugin!? - by nouseforname - 11-27-2014, 05:47 PM
RE: [Plugin] Homes Plugin!? - by xoft - 11-27-2014, 07:43 PM
RE: [Plugin] Homes Plugin!? - by nouseforname - 11-28-2014, 01:52 AM
RE: [Plugin] Homes Plugin!? - by xoft - 11-28-2014, 02:58 AM
RE: [Plugin] Homes Plugin!? - by nouseforname - 11-28-2014, 03:33 AM



Users browsing this thread: 1 Guest(s)