1. Lets say I wanted to do a textured cube with the same texture on every side. I can't use indexed VBOs can I because if I reuse vertices the texture coordinates won't work right?
Kinda. You can still use indexed VBOs, but some of your entries might need to have the same vertex positions with different normals and texture coordinates. Off the top of my head, I don't think there's a way to index the different arrays separately, so duplicating some of the data is the normal way to go about things.
2. glDrawRangeElements, I understand all of the arguments except for the 'end' and 'count' arguments (the 3rd and 4th ones), I know they have to do with the amount of things being drawn but is it the amount of triangles or vertices or what?
I'm pretty sure count is the number of vertices. start and end seem a bit confusing, though... I've only ever used glDrawElements, but from what I'm reading of the glDrawRangeElements man page, it looks like you just need to specify the minimum and maximum allowable values that will be pulled from your index array. I guess that makes it safer than glDrawElements, since you won't be able to index an element outside your VBO if your index buffer is filled with memory garbage or something?