Themabewertung:
  • 0 Bewertung(en) - 0 im Durchschnitt
  • 1
  • 2
  • 3
  • 4
  • 5

Oldsters HTC V2.0
#74

Hallo oldster´s

Ich hab jetzt mal vom Htc wetter widget
die configureMe,js und Lockbackground.html eingefügt vieleicht kannst du damit was anfangen

configureMe.js




Code:
// Use weather.com to find your weathercode
// For example searching for London, UK will get you this URL
// http://www.weather.com/weather/today/London+United+Kingdom+UKXX0085
// The last part UKXX0085 is the weathercode to use
var locale = "GMXX0027" //Zipcode, Postalcode, or Weathercode
var isCelsius = true //true or false
var useRealFeel = false
var updateInterval = 10 //Minutes
var showForecast = true

// If you would rather use your own Lockscreen Background
// set showBackground to true and overwrite the included
// LockBackground.png file
var showBackground = false

var showWeatherAni = true



[b]Lockbackground.html[/b]






<html>

<head><title>newclock</title>

<!--Moddified by Jose Sampo (Kevlar)

http://www.Facebook.com/jsampo

Version 1.7 Released 1-28-11 -->

<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">



<style>

body {

        background-color: black;

        margin: 0;

        padding: 10px 0 0 0;



}



SPAN#clock

{

        font-family: Helvetica;

        font-weight: bold;

        color: #d1d1d1;

        text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.7);

        /*text-shadow: #FFFFFF 0px 1px 0px;*/

        font-size: 26px;

}



SPAN#ampm

{

        font-family: Helvetica;

        font-weight: bold;

        color: #d1d1d1;

        text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.7);

        /*text-shadow: #FFFFFF 0px 1px 0px;*/

        font-size: 15px;

        display:none;

}



TD#dateString

{

        font-family: Helvetica;

        font-weight: bold;

        color: #d1d1d1;

        text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.7);

        /*text-shadow: #FFFFFF 0px 1px 0px;*/

        font-size: 11px;

        text-align:center;

}



TABLE#CalendarTable

{

        font-family: Helvetica;

        font-weight: bold;

        color: #d1d1d1;

        text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.7);

        /*text-shadow: #FFFFFF 0px 1px 0px;*/

        font-size: 11px;

        text-align:center;

        margin-top:6px;

}



SPAN#calendar

{

        font-family: Helvetica;

        font-weight: bold;

        color: #d1d1d1;

        text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.7);

        /*text-shadow: #FFFFFF 0px 1px 0px;*/

        font-size: 14px;

        position:absolute;

        top:162px;

        text-align:right;

        width:300px;



}

</style>

<script type="text/javascript" src="configureMe.js"></script>

<base href="Private/"/>

<script type="text/javascript" "charset=ISO-8859-1">

var this_weekday_name_array = new Array("So","Mo","Di","Mi","Do","Fr","Sa")

var this_month_name_array = new Array("Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez")  //predefine month names



var this_date_timestamp = new Date()



var this_weekday = this_date_timestamp.getDay()

var this_date = this_date_timestamp.getDate()

var this_month = this_date_timestamp.getMonth()

var this_year = this_date_timestamp.getYear()



if (this_year < 1000)

    this_year+= 1900;

if (this_year==101)

    this_year=2001;



var this_date_string = this_weekday_name_array[this_weekday] + " " + this_date + " " + this_month_name_array[this_month]//concat long date string



function init ( )

{

  timeDisplay = document.createTextNode ( "" );

  document.getElementById("clock").appendChild ( timeDisplay );



}



function updateClock ( )

{



  var TwentyFourHourClock = true;

  var currentTime = new Date ( );

  var currentHours = currentTime.getHours ( );

  var currentMinutes = currentTime.getMinutes ( );

  var currentSeconds = currentTime.getSeconds ( );



  // Pad the minutes and seconds with leading zeros, if required

  currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;

  currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;



if (TwentyFourHourClock == false){



  var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM"

  currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;

  currentHours = ( currentHours == 0 ) ? 12 : currentHours;

if (timeOfDay == "PM"){

document.getElementById("ampm").src="pm.png"

}

else

{

document.getElementById("ampm").src="am.png"

}

}

  // Compose the string for display

  var currentTimeString = currentHours + ":" + currentMinutes;



  // Update the time display

  currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours;



document.getElementById("hr1").src="Digits/"+currentHours.charAt(0)+".png";

document.getElementById("hr2").src="Digits/"+currentHours.charAt(1)+".png";

document.getElementById("min1").src="Digits/"+currentMinutes.charAt(0)+".png";

document.getElementById("min2").src="Digits/"+currentMinutes.charAt(1)+".png";

}



function init2 ( )

{

  timeDisplay = document.createTextNode ( "" );

  document.getElementById("ampm").appendChild ( timeDisplay );

}



function amPm ( )

{

  var currentTime = new Date ( );



  var currentHours = currentTime.getHours ( );



  // Choose either "AM" or "PM" as appropriate

  var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";



  // Convert the hours component to 12-hour format if needed

  currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;



  // Convert an hours component of "0" to "12"

  currentHours = ( currentHours == 0 ) ? 12 : currentHours;



  // Compose the string for display

  var currentTimeString = timeOfDay;



  // Update the time display

  document.getElementById("ampm").firstChild.nodeValue = currentTimeString;

}



function init3 ( )

{

  timeDisplay = document.createTextNode ( "" );

  document.getElementById("calendar").appendChild ( timeDisplay );

}



function daysInMonth(iMonth, iYear)

{

        return 32 - new Date(iYear, iMonth, 32).getDate();

}



function zeroPad(num,count)

{

var numZeropad = num + '';

while(numZeropad.length < count) {

numZeropad = "0" + numZeropad;

}

return numZeropad;

}



function calendarDate ( )

{

var this_weekday_name_array = new Array("So","Mo","Di","Mi","Do","Fr","Sa")

var this_month_name_array = new Array("Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez")    //predefine month names



  var this_date_timestamp = new Date()



  var this_weekday = this_date_timestamp.getDay()

  var this_date = this_date_timestamp.getDate()



  var this_month = this_date_timestamp.getMonth()

Current_Month = this_month

document.getElementById("calendar").firstChild.nodeValue = this_weekday_name_array[this_weekday] + ", "  + this_date + ". "+ this_month_name_array[this_month]

}

</script>

<script type="text/javascript" src="translation.js"></script>

<script type="text/javascript">

var MiniIcons =

[

        "tstorm3",              //0     tornado

        "tstorm3",              //1     tropical storm

        "tstorm3",              //2     hurricane

        "tstorm3",              //3     severe thunderstorms

        "tstorm3",              //4     thunderstorms

        "sleet",                //5     mixed rain and snow

        "sleet",                //6     mixed rain and sleet

        "sleet",                //7     mixed snow and sleet

        "sleet",                //8     freezing drizzle

        "light_rain",           //9     drizzle

        "sleet",                //10    freezing rain

        "shower3",              //11    showers

        "shower3",              //12    showers

        "snow1",                //13    snow flurries

        "snow2",                //14    light snow showers

        "snow4",                //15    blowing snow

        "snow4",                //16    snow

        "hail",         //17    hail

        "sleet",                //18    sleet

        "mist",         //19    dust

        "fog",          //20    foggy

        "fog",          //21    haze

        "fog",          //22    smoky

        "windy",                //23    blustery

        "windy",                //24    windy

        "windy",                //25    cold

        "overcast",             //26    cloudy

        "cloudy4_night",                //27    mostly cloudy (night)

        "cloudy4",              //28    mostly cloudy (day)

        "cloudy1_night",                //29    partly cloudy (night)

        "cloudy1",              //30    partly cloudy (day)

        "sunny_night",          //31    clear (night)

        "sunny",                //32    sunny

        "fair_night",           //33    fair (night)

        "fair",         //34    fair (day)

        "hail",         //35    mixed rain and hail

        "hot",          //36    hot

        "tstorm1",              //37    isolated thunderstorms

        "tstorm2",              //38    scattered thunderstorms

        "tstorm2",              //39    scattered thunderstorms

        "shower1",              //40    scattered showers

        "snow5",                //41    heavy snow

        "snow3",                //42    scattered snow showers

        "snow5",                //43    heavy snow

        "cloudy1",              //44    partly cloudy

        "tstorm3",              //45    thundershowers

        "snow2",                //46    snow showers

        "tstorm1",              //47    isolated thundershowers

        "dunno",                //3200  not available

]





function constructError (string)

{

        return {error:true, errorString:string};

}



function findChild (element, nodeName)

{

        var child;



        for (child = element.firstChild; child != null; child = child.nextSibling)

        {

                if (child.nodeName == nodeName)

                        return child;

        }



        return null;

}





function fetchWeatherData (callback, zip)

{

        if (isCelsius == false){

        varUnit = 'f'

        }

        else

        {

        varUnit = 'c'

        }



url="http://xml.weather.yahoo.com/forecastrss/" //u=Farenheit, because accuWeather sucks



        var xml_request = new XMLHttpRequest();

        xml_request.onload = function(e) {xml_loaded(e, xml_request, callback);}

        xml_request.overrideMimeType("text/xml");

        xml_request.open("GET", url+zip+'_'+varUnit+'.xml');

        xml_request.setRequestHeader("Cache-Control", "no-cache");

        xml_request.send(null);



        return xml_request;

}



function xml_loaded (event, request, callback)

{

        if (request.responseXML)

        {

                var obj = {error:false, errorString:null};

                var effectiveRoot = findChild(findChild(request.responseXML, "rss"), "channel");

                obj.city = findChild(effectiveRoot, "yweather:location").getAttribute("city");

                obj.realFeel = findChild(effectiveRoot, "yweather:wind").getAttribute("chill");//Only accounts for windChill



                conditionTag = findChild(findChild(effectiveRoot, "item"), "yweather:condition");

                obj.temp = conditionTag.getAttribute("temp");

                obj.icon = conditionTag.getAttribute("code");

                obj.description = conditionTag.getAttribute("text");



                obj.sunset = request.responseXML.getElementsByTagName("astronomy")[0].getAttribute("sunset");

                obj.sunset = obj.sunset.split(' ')[0]

                obj.sunsethr = obj.sunset.split(':')[0]*1+12

                obj.sunsetmin = obj.sunset.split(':')[1]



                obj.Today = request.responseXML.getElementsByTagName("forecast")[0].getAttribute("day");

                obj.TodayHi = request.responseXML.getElementsByTagName("forecast")[0].getAttribute("high");

                obj.TodayLo = request.responseXML.getElementsByTagName("forecast")[0].getAttribute("low");

                obj.TodayCode = request.responseXML.getElementsByTagName("forecast")[0].getAttribute("code");



                obj.Day1 = request.responseXML.getElementsByTagName("forecast")[1].getAttribute("day");

                obj.Day1Hi = request.responseXML.getElementsByTagName("forecast")[1].getAttribute("high");

                obj.Day1Lo = request.responseXML.getElementsByTagName("forecast")[1].getAttribute("low");

                obj.Day1Code = request.responseXML.getElementsByTagName("forecast")[1].getAttribute("code");



                obj.Day2 = request.responseXML.getElementsByTagName("forecast")[2].getAttribute("day");

                obj.Day2Hi = request.responseXML.getElementsByTagName("forecast")[2].getAttribute("high");

                obj.Day2Lo = request.responseXML.getElementsByTagName("forecast")[2].getAttribute("low");

                obj.Day2Code = request.responseXML.getElementsByTagName("forecast")[2].getAttribute("code");



                obj.Day3 = request.responseXML.getElementsByTagName("forecast")[3].getAttribute("day");

                obj.Day3Hi = request.responseXML.getElementsByTagName("forecast")[3].getAttribute("high");

                obj.Day3Lo = request.responseXML.getElementsByTagName("forecast")[3].getAttribute("low");

                obj.Day3Code = request.responseXML.getElementsByTagName("forecast")[3].getAttribute("code");



                obj.Day4 = request.responseXML.getElementsByTagName("forecast")[4].getAttribute("day");

                obj.Day4Hi = request.responseXML.getElementsByTagName("forecast")[4].getAttribute("high");

                obj.Day4Lo = request.responseXML.getElementsByTagName("forecast")[4].getAttribute("low");

                obj.Day4Code = request.responseXML.getElementsByTagName("forecast")[4].getAttribute("code");





                forecastTag = findChild(findChild(effectiveRoot, "item"), "yweather:forecast");

                callback (obj);

        }else{

                callback ({error:true, errorString:"XML request failed. no responseXML"});

        }

}





function validateWeatherLocation (location, callback)

{

        var obj = {error:false, errorString:null, cities: new Array};

        obj.cities[0] = {zip: location}; //Not very clever, are we?

        callback (obj);

}



var LangTranslate = German // or English

var stylesheet = 'myopiaAlt' //'originalBubble'|'myopia'|'iconOnly'|'split'

var iconSet = "HTC" //'klear'|'tango'|null (null makes iconSet = stylesheet)

var iconExt = ".png" //'.png'|.'gif' etc.

var source = 'yahooWeather' //'appleAccuweatherStolen'|'yahooWeather'

</script>



<script type="text/javascript">

var postal;



if(iconSet == null || iconSet == 'null'){

        var iconSet = stylesheet;

}



var headID = document.getElementsByTagName("head")[0];

var styleNode = document.createElement('link');

styleNode.type = 'text/css';

styleNode.rel = 'stylesheet';

styleNode.href = 'Stylesheets/'+stylesheet+'.css';

headID.appendChild(styleNode);



var scriptNode = document.createElement('script');

scriptNode.type = 'text/javascript';

scriptNode.src = 'Sources/'+source+'.js';

headID.appendChild(scriptNode);



function onLoad(){

        //document.getElementById("weatherIcon").src="Icon Sets/"+iconSet+"/"+"dunno"+iconExt;

        validateWeatherLocation(escape(locale).replace(/^%u/g, "%"), setPostal)

        setInterval('fetchWeatherData(dealWithWeather,postal)', 1000*60*updateInterval);

}





function setPostal(obj){



        if (obj.error == false){

                if(obj.cities.length > 0){

                        postal = escape(obj.cities[0].zip).replace(/^%u/g, "%")

                        fetchWeatherData(dealWithWeather,postal);

                }else{

                        document.getElementById("city").innerText="Not Found";

                }

        }else{

                document.getElementById("city").innerText=obj.errorString;

        }

}







function dealWithWeather(obj){



        if (obj.error == false){

                document.getElementById("city").innerText=obj.city.substring(0,11);



                if (LangTranslate == English)

                {

                document.getElementById("desc").innerText=obj.description; //+" ("+obj.icon+")";

                }

                else

                {

                document.getElementById("desc").innerText = LangTranslate[obj.icon*1];          }

                if(useRealFeel == true){

                        tempValue = obj.realFeel;

                }else{

                        tempValue = obj.temp;

                }



                var currentTime = new Date ( );

                var currentHours = currentTime.getHours ( );

                var currentMinutes = currentTime.getMinutes ( );

                if(obj.sunsethr < currentHours){

                obj.TOD = "Tonight"

                }

                else if(obj.sunsethr < currentHours)

                {

                obj.TOD = "Tonight"

                }

                else if(currentHours < 2)

                {

                obj.TOD = "Tonight"

                }

                else

                {

                obj.TOD = "Today"

                }



                if (isCelsius == true) {

                        document.getElementById("temp").innerHTML=tempValue+ "° C";

                } else {

                        document.getElementById("temp").innerHTML=tempValue+ "° F";

                }

                document.getElementById("weatherIcon").src="Icon Sets/"+iconSet+"/"+obj.icon+iconExt;



                if (showBackground == false){

                        document.getElementById("mainbk").src="Icon Sets/mnidhk"+"/"+obj.icon+iconExt;

                        }



                if (showForecast == true){

                document.getElementById("Today").innerHTML=ForecastDayNames(obj.TOD);

                document.getElementById("TodayIcon").src="Icon Sets/"+iconSet+"/"+obj.TodayCode+'_small'+iconExt;

                document.getElementById("TodayHiLo").innerHTML=obj.TodayHi+ "° / <font color=#a8a8a8>"+obj.TodayLo+ "°</font>";



                document.getElementById("Day1").innerHTML=ForecastDayNames(obj.Day1);

                document.getElementById("Day1Icon").src="Icon Sets/"+iconSet+"/"+obj.Day1Code+'_small'+iconExt;

                document.getElementById("Day1HiLo").innerHTML=obj.Day1Hi+ "° / <font color=#a8a8a8>"+obj.Day1Lo+ "°</font>";



                document.getElementById("Day2").innerHTML=ForecastDayNames(obj.Day2);

                document.getElementById("Day2Icon").src="Icon Sets/"+iconSet+"/"+obj.Day2Code+'_small'+iconExt;

                document.getElementById("Day2HiLo").innerHTML=obj.Day2Hi+ "° / <font color=#a8a8a8>"+obj.Day2Lo+ "°</font>";



                document.getElementById("Day3").innerHTML=ForecastDayNames(obj.Day3);

                document.getElementById("Day3Icon").src="Icon Sets/"+iconSet+"/"+obj.Day3Code+'_small'+iconExt;

                document.getElementById("Day3HiLo").innerHTML=obj.Day3Hi+ "° / <font color=#a8a8a8>"+obj.Day3Lo+ "°</font>";



                document.getElementById("Day4").innerHTML=ForecastDayNames(obj.Day4);

                document.getElementById("Day4Icon").src="Icon Sets/"+iconSet+"/"+obj.Day4Code+'_small'+iconExt;

                document.getElementById("Day4HiLo").innerHTML=obj.Day4Hi+ "° / <font color=#a8a8a8>"+obj.Day4Lo+ "°</font>";

                }



  var currentTime = new Date ( );

  var currentHours = currentTime.getHours ( );

  var currentMinutes = currentTime.getMinutes ( );

  var currentSeconds = currentTime.getSeconds ( );



  // Pad the minutes and seconds with leading zeros, if required

  currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;

  currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;



  // Choose either "AM" or "PM" as appropriate

  var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";



  // Convert the hours component to 12-hour format if needed

  currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;



  // Convert an hours component of "0" to "12"

  currentHours = ( currentHours == 0 ) ? 12 : currentHours;



  // Compose the string for display

  var currentTimeString = currentHours + ":" + currentMinutes;



        var Conditions =        ["thunderstorm",

                                "rain",

                                "rain",

                                "thunderstorm",

                                "thunderstorm",

                                "sleet",

                                "sleet",

                                "sleet",

                                "sleet",

                                "showers_cloud",

                                "sleet",

                                "showers_cloud",

                                "showers_cloud",

                                "snow",

                                "snow",

                                "snow",

                                "snow",

                                "hail",

                                "sleet",

                                "fog",

                                "fog",

                                "Haze",

                                "fog",

                                "wind",

                                "wind",

                                "frost",

                                "cloud",

                                "partlymoon",

                                "partlysunny",

                                "partlymoon",

                                "partlysunny",

                                "moon",

                                "sun",

                                "partlymoon",

                                "partlysunny",

                                "sleet",

                                "sun",

                                "thunderstorm",

                                "thunderstorm",

                                "thunderstorm",

                                "thunderstorm",

                                "snow",

                                "snow",

                                "snow",

                                "cloud",

                                "thunderstorm",

                                "snow",

                                "thunderstorm",

                                "blank"];

if (showWeatherAni == true){

                document.getElementById("animationFrame").src="Animations/"+Conditions[obj.icon]+".html";

                //debugging weather codes / animations

                //document.getElementById("desc").innerText=obj.description +" ("+obj.icon+")" + " / ("+Conditions[obj.icon] +")"

}







        }





}



</script>

</head>

<body onLoad="onLoad()" style="margin-left: 0; background-color:black">





<div id="weatherFrame">

            <iframe id="animationFrame" name="animation" src="Animations/blank.html" width="320" height="480" scrolling="no" frameborder="0" marginwidth="0" marginheight="0" allowtransparency="true"></iframe>

        </div>

<script type="text/javascript">

if (showBackground == false){

document.write("<img name=\"mainbk\" id=\"mainbk\" height=\"568\" style=\"position: absolute; top: 0px; left: -28px; z-index:-1;\">");

} else {

document.write("<img name=\"mainbk\" id=\"mainbk\" src=\"../LockBackground.png\" height=\"568\"  style=\"position: absolute; top: 0px; left: -28px; z-index:-1;\">");

}

</script>



<img src="bg.png" style="position: absolute; z-index:-1;top:25; left: 0px;" height="186" width="320">



<img src="" id="ampm" style="position: absolute; z-index:-1;top:135; left: 40px;" width="20">

<table border=0 style="position: absolute; z-index:-1;top:47; left: 37px;"><tr><td><img src="" width="49" height="80" border=0 id="hr1"></td><td><img src="" width="49" height="80" border=0 id="hr2"></td>

<td width=30></td>

<td><img src="" width="49" height="80" border=0 id="min1"></td><td><img src="" width="49" height="80" border=0 id="min2"></td>

</tr>

</table>

<span id="calendar" align=right>

        <script language="JavaScript">calendarDate(); setInterval('calendarDate()', 1000 )</script>

        </span>

    <span id="clock">

        <script language="JavaScript">updateClock(); setInterval('updateClock()', 1000 )</script></span> <span id="ampm">

    </span>

<div id="WeatherContainer">

<div id="TextContainer">

<img id="weatherIcon" src="" height=108 width=114 style="position:absolute; top:115px;left:103px;z-index:1;">

<a id="city"></a><a id="desc"></a><a id="temp"></a>



<script type="text/javascript">

        if (showForecast == true){

        document.write("<img src=\"forecast-bg.png\" style=\"position: absolute; z-index:-1;top:225; left: 0px;\" width=\"320\">");

        }



</script>



<table cellpadding=0 cellspacing=0 style="position:absolute; top:210px; left:20px;z-index:1" width="280" align=center>

        <tr>

                <td align=center><img id="TodayIcon" height=50 src=""/></td>

                <td align=center><img id="Day1Icon" height=50 src=""/></td>



                <td align=center><img id="Day2Icon" height=50 src=""/></td>

                <td align=center><img id="Day3Icon" height=50 src=""/></td>

                <td align=center><img id="Day4Icon" height=50 src=""/></td>



        </tr>

</table>



<table cellpadding=0 cellspacing=0 style="position:absolute; top:250px; left:20px" width="280" align=center>

        <tr>

                <td align=center><a id="TodayHiLo"></a></td>

                <td align=center><a id="Day1HiLo"></a></td>



                <td align=center><a id="Day2HiLo"></a></td>

                <td align=center><a id="Day3HiLo"></a></td>

                <td align=center><a id="Day4HiLo"></a></td>



        </tr>

        <tr>



                <td align=center><a id="Today"></a></td>

                <td align=center><a id="Day1"></a></td>

                <td align=center><a id="Day2"></a></td>



                <td align=center><a id="Day3"></a></td>

                <td align=center><a id="Day4"></a></td>

        </tr>

</table>

<a id="time" style="position:absolute; top:105px; width:299px;z-index:-1;font-size:8px;display:none;"></a>

</div>

</div>

</body>

</html>
Zitieren


Nachrichten in diesem Thema
Oldsters HTC V2.0 - von oldster - 24.05.2013, 17:13
RE: oldster's HTC V2.0 - von Chris - 24.05.2013, 17:15
RE: oldster's HTC V2.0 - von oldster - 24.05.2013, 17:33
RE: oldster's HTC V2.0 - von Adam - 24.05.2013, 17:36
RE: oldster's HTC V2.0 - von oldster - 25.05.2013, 06:56
RE: oldster's HTC V2.0 - von hgs61 - 25.05.2013, 08:56
RE: oldster's HTC V2.0 - von wardog256 - 25.05.2013, 11:32
RE: oldster's HTC V2.0 - von Lindsay - 25.05.2013, 17:44
RE: oldster's HTC V2.0 - von Morpheus71 - 25.05.2013, 20:59
RE: oldster's HTC V2.0 - von Morpheus71 - 25.05.2013, 21:09
RE: oldster's HTC V2.0 - von hell 7 - 25.05.2013, 21:26
RE: oldster's HTC V2.0 - von Morpheus71 - 25.05.2013, 21:55
RE: oldster's HTC V2.0 - von hell 7 - 25.05.2013, 22:21
RE: oldster's HTC V2.0 - von Morpheus71 - 25.05.2013, 22:31
RE: oldster's HTC V2.0 - von hell 7 - 25.05.2013, 22:49
RE: oldster's HTC V2.0 - von Morpheus71 - 25.05.2013, 23:15
RE: oldster's HTC V2.0 - von lobo0404 - 26.05.2013, 09:32
RE: oldster's HTC V2.0 - von oldster - 26.05.2013, 09:49
RE: oldster's HTC V2.0 - von wardog256 - 26.05.2013, 09:59
RE: oldster's HTC V2.0 - von oldster - 26.05.2013, 10:42
RE: oldster's HTC V2.0 - von hgs61 - 26.05.2013, 19:07
RE: oldster's HTC V2.0 - von oldster - 26.05.2013, 20:09
RE: oldster's HTC V2.0 - von M@!k - 26.05.2013, 21:26
RE: oldster's HTC V2.0 - von lobo0404 - 26.05.2013, 10:26
RE: oldster's HTC V2.0 - von lobo0404 - 26.05.2013, 10:53
RE: oldster's HTC V2.0 - von oldster - 26.05.2013, 11:20
RE: oldster's HTC V2.0 - von lobo0404 - 26.05.2013, 11:52
RE: oldster's HTC V2.0 - von wardog256 - 26.05.2013, 11:26
RE: oldster's HTC V2.0 - von buck - 26.05.2013, 11:43
RE: oldster's HTC V2.0 - von oldster - 26.05.2013, 12:40
RE: oldster's HTC V2.0 - von lobo0404 - 26.05.2013, 12:04
RE: oldster's HTC V2.0 - von oldster - 26.05.2013, 12:30
RE: oldster's HTC V2.0 - von lobo0404 - 26.05.2013, 13:08
RE: oldster's HTC V2.0 - von buck - 26.05.2013, 13:11
RE: oldster's HTC V2.0 - von lobo0404 - 26.05.2013, 13:20
RE: oldster's HTC V2.0 - von oldster - 26.05.2013, 13:35
RE: oldster's HTC V2.0 - von lobo0404 - 26.05.2013, 15:37
RE: oldster's HTC V2.0 - von M@!k - 26.05.2013, 13:37
RE: oldster's HTC V2.0 - von oldster - 26.05.2013, 16:03
RE: oldster's HTC V2.0 - von M@!k - 26.05.2013, 16:35
RE: oldster's HTC V2.0 - von Morpheus71 - 26.05.2013, 16:47
RE: oldster's HTC V2.0 - von M@!k - 26.05.2013, 16:57
RE: oldster's HTC V2.0 - von oldster - 26.05.2013, 19:06
RE: oldster's HTC V2.0 - von M@!k - 26.05.2013, 19:52
RE: oldster's HTC V2.0 - von lobo0404 - 26.05.2013, 20:18
RE: oldster's HTC V2.0 - von oldster - 26.05.2013, 22:52
RE: oldster's HTC V2.0 - von Morpheus71 - 27.05.2013, 14:21
RE: oldster's HTC V2.0 - von schalker44 - 26.05.2013, 20:32
oldster's HTC V2.0 - von Gwai - 26.05.2013, 22:48
oldster's HTC V2.0 - von Gwai - 26.05.2013, 23:22
oldster's HTC V2.0 - von Gwai - 27.05.2013, 07:32
RE: oldster's HTC V2.0 - von oldster - 27.05.2013, 15:37
RE: oldster's HTC V2.0 - von lobo0404 - 08.06.2013, 08:45
RE: oldster's HTC V2.0 - von Morpheus71 - 27.05.2013, 16:12
RE: oldster's HTC V2.0 - von hgs61 - 27.05.2013, 18:23
RE: oldster's HTC V2.0 - von lobo0404 - 27.05.2013, 19:36
RE: oldster's HTC V2.0 - von hgs61 - 27.05.2013, 20:07
RE: oldster's HTC V2.0 - von lobo0404 - 27.05.2013, 20:21
RE: oldster's HTC V2.0 - von hgs61 - 27.05.2013, 20:31
RE: oldster's HTC V2.0 - von lobo0404 - 27.05.2013, 20:51
RE: oldster's HTC V2.0 - von hgs61 - 27.05.2013, 21:18
oldster's HTC V2.0 - von oldster - 27.05.2013, 21:20
RE: oldster's HTC V2.0 - von M@!k - 28.05.2013, 07:07
RE: oldster's HTC V2.0 - von JH97 - 28.05.2013, 08:34
oldster's HTC V2.0 - von oldster - 28.05.2013, 09:51
oldster's HTC V2.0 - von Gwai - 28.05.2013, 10:12
RE: oldster's HTC V2.0 - von M@!k - 28.05.2013, 10:14
RE: oldster's HTC V2.0 - von wardog256 - 28.05.2013, 10:25
RE: oldster's HTC V2.0 - von wardog256 - 28.05.2013, 10:33
oldster's HTC V2.0 - von oldster - 28.05.2013, 10:45
RE: oldster's HTC V2.0 - von wardog256 - 28.05.2013, 10:54
RE: oldster's HTC V2.0 - von M@!k - 28.05.2013, 11:43
oldster's HTC V2.0 - von Gwai - 28.05.2013, 12:03
RE: oldster's HTC V2.0 - von Hunkebunken - 28.05.2013, 14:22
RE: oldster's HTC V2.0 - von wardog256 - 28.05.2013, 14:31
oldster's HTC V2.0 - von Gwai - 28.05.2013, 17:37
RE: oldster's HTC V2.0 - von oldster - 28.05.2013, 20:43
RE: oldster's HTC V2.0 - von Gwai - 28.05.2013, 21:25
RE: oldster's HTC V2.0 - von oldster - 28.05.2013, 20:36
RE: oldster's HTC V2.0 - von Nine - 28.05.2013, 21:12
RE: oldster's HTC V2.0 - von Martins Iphone - 28.05.2013, 21:39
RE: oldster's HTC V2.0 - von oldster - 28.05.2013, 22:00
RE: oldster's HTC V2.0 - von unal2 - 29.05.2013, 01:55
RE: oldster's HTC V2.0 - von unal2 - 29.05.2013, 02:31
RE: oldster's HTC V2.0 - von Martins Iphone - 28.05.2013, 22:07
RE: oldster's HTC V2.0 - von Martins Iphone - 29.05.2013, 02:33
RE: oldster's HTC V2.0 - von Martins Iphone - 29.05.2013, 04:24
RE: oldster's HTC V2.0 - von wildbiker - 29.05.2013, 06:20
RE: oldster's HTC V2.0 - von oldster - 29.05.2013, 06:56
RE: oldster's HTC V2.0 - von Martins Iphone - 29.05.2013, 19:00
RE: oldster's HTC V2.0 - von wardog256 - 29.05.2013, 07:07
RE: oldster's HTC V2.0 - von M@!k - 29.05.2013, 09:29
RE: oldster's HTC V2.0 - von Martins Iphone - 29.05.2013, 09:36
RE: oldster's HTC V2.0 - von wardog256 - 29.05.2013, 10:55
RE: oldster's HTC V2.0 - von Martins Iphone - 29.05.2013, 11:01
RE: oldster's HTC V2.0 - von M@!k - 29.05.2013, 11:15
oldster's HTC V2.0 - von Gwai - 29.05.2013, 11:58
RE: oldster's HTC V2.0 - von wardog256 - 29.05.2013, 12:01
RE: oldster's HTC V2.0 - von M@!k - 29.05.2013, 12:02
RE: oldster's HTC V2.0 - von Hunkebunken - 29.05.2013, 12:03
RE: oldster's HTC V2.0 - von Martins Iphone - 29.05.2013, 17:30
RE: oldster's HTC V2.0 - von lobo0404 - 29.05.2013, 19:13
RE: oldster's HTC V2.0 - von Martins Iphone - 29.05.2013, 19:31
RE: oldster's HTC V2.0 - von lobo0404 - 29.05.2013, 20:25
RE: oldster's HTC V2.0 - von Martins Iphone - 29.05.2013, 21:02
RE: oldster's HTC V2.0 - von oldster - 29.05.2013, 20:11
RE: oldster's HTC V2.0 - von oldster - 30.05.2013, 07:20
RE: oldster's HTC V2.0 - von JH97 - 30.05.2013, 07:34
RE: oldster's HTC V2.0 - von Martins Iphone - 30.05.2013, 14:22
oldster's HTC V2.0 - von Gwai - 30.05.2013, 14:59
RE: oldster's HTC V2.0 - von Kusselin - 30.05.2013, 17:34
RE: oldster's HTC V2.0 - von oldster - 30.05.2013, 19:32
RE: oldster's HTC V2.0 - von raveking - 30.05.2013, 20:28
RE: oldster's HTC V2.0 - von Martins Iphone - 30.05.2013, 20:45
RE: oldster's HTC V2.0 - von hell 7 - 30.05.2013, 21:51
oldster's HTC V2.0 - von Gwai - 01.06.2013, 11:02
RE: oldster's HTC V2.0 - von Hunkebunken - 01.06.2013, 11:08
oldster's HTC V2.0 - von Gwai - 01.06.2013, 11:24
RE: oldster's HTC V2.0 - von Japy - 02.06.2013, 13:12
RE: oldster's HTC V2.0 - von oldster - 02.06.2013, 15:26
RE: oldster's HTC V2.0 - von oldster - 03.06.2013, 22:07
RE: oldster's HTC V2.0 - von Japy - 02.06.2013, 15:48
RE: oldster's HTC V2.0 - von Kusselin - 02.06.2013, 18:51
RE: oldster's HTC V2.0 - von M@!k - 03.06.2013, 01:25
oldster's HTC V2.0 - von Gwai - 03.06.2013, 07:16
RE: oldster's HTC V2.0 - von M@!k - 03.06.2013, 07:31
RE: oldster's HTC V2.0 - von Kusselin - 03.06.2013, 11:19
RE: oldster's HTC V2.0 - von Kusselin - 03.06.2013, 18:00
RE: oldster's HTC V2.0 - von Kusselin - 03.06.2013, 09:33
RE: oldster's HTC V2.0 - von M@!k - 03.06.2013, 09:42
RE: oldster's HTC V2.0 - von Kusselin - 03.06.2013, 11:42
oldster's HTC V2.0 - von Gwai - 03.06.2013, 11:50
RE: oldster's HTC V2.0 - von M@!k - 03.06.2013, 11:55
oldster's HTC V2.0 - von Gwai - 03.06.2013, 13:31
RE: oldster's HTC V2.0 - von Kusselin - 03.06.2013, 13:39
RE: oldster's HTC V2.0 - von M@!k - 03.06.2013, 13:56
RE: oldster's HTC V2.0 - von Kusselin - 03.06.2013, 14:21
oldster's HTC V2.0 - von Gwai - 03.06.2013, 14:11
RE: oldster's HTC V2.0 - von M@!k - 03.06.2013, 14:44
oldster's HTC V2.0 - von Gwai - 03.06.2013, 15:01
RE: oldster's HTC V2.0 - von Hunkebunken - 03.06.2013, 15:06
RE: oldster's HTC V2.0 - von Kusselin - 03.06.2013, 20:30
RE: oldster's HTC V2.0 - von Hunkebunken - 03.06.2013, 17:00
RE: oldster's HTC V2.0 - von Hunkebunken - 03.06.2013, 21:00
RE: oldster's HTC V2.0 - von Kusselin - 04.06.2013, 18:57
RE: oldster's HTC V2.0 - von schalker44 - 03.06.2013, 23:06
RE: oldster's HTC V2.0 - von Japy - 03.06.2013, 23:07
RE: oldster's HTC V2.0 - von schalker44 - 03.06.2013, 23:08
RE: oldster's HTC V2.0 - von Japy - 03.06.2013, 23:20
RE: oldster's HTC V2.0 - von schalker44 - 03.06.2013, 23:27
RE: oldster's HTC V2.0 - von Japy - 03.06.2013, 23:30
RE: oldster's HTC V2.0 - von hell 7 - 03.06.2013, 23:41
RE: oldster's HTC V2.0 - von M@!k - 04.06.2013, 00:20
RE: oldster's HTC V2.0 - von Japy - 04.06.2013, 00:39
oldster's HTC V2.0 - von Gwai - 04.06.2013, 05:14
RE: oldster's HTC V2.0 - von oldster - 04.06.2013, 15:18
RE: oldster's HTC V2.0 - von Kusselin - 04.06.2013, 16:12
oldster's HTC V2.0 - von oldster - 04.06.2013, 06:34
RE: oldster's HTC V2.0 - von Kusselin - 04.06.2013, 07:36
RE: oldster's HTC V2.0 - von Japy - 04.06.2013, 13:07
RE: oldster's HTC V2.0 - von Kusselin - 04.06.2013, 13:25
oldster's HTC V2.0 - von Gwai - 04.06.2013, 15:39
RE: oldster's HTC V2.0 - von hell 7 - 04.06.2013, 15:56
RE: oldster's HTC V2.0 - von Hunkebunken - 04.06.2013, 16:01
RE: oldster's HTC V2.0 - von oldster - 09.06.2013, 18:40
oldster's HTC V2.0 - von Gwai - 04.06.2013, 16:19
RE: oldster's HTC V2.0 - von Japy - 04.06.2013, 16:23
oldster's HTC V2.0 - von Gwai - 04.06.2013, 16:26
RE: oldster's HTC V2.0 - von oldster - 04.06.2013, 16:33
RE: oldster's HTC V2.0 - von Japy - 04.06.2013, 16:38
RE: oldster's HTC V2.0 - von oldster - 04.06.2013, 17:09
RE: oldster's HTC V2.0 - von Japy - 04.06.2013, 17:18
RE: oldster's HTC V2.0 - von lobo0404 - 04.06.2013, 18:53
RE: oldster's HTC V2.0 - von lobo0404 - 04.06.2013, 19:05
RE: oldster's HTC V2.0 - von oldster - 04.06.2013, 19:45
RE: oldster's HTC V2.0 - von Kusselin - 04.06.2013, 19:34
RE: oldster's HTC V2.0 - von lobo0404 - 04.06.2013, 20:43
RE: oldster's HTC V2.0 - von Japy - 04.06.2013, 22:09
RE: oldster's HTC V2.0 - von hell 7 - 04.06.2013, 23:52
RE: oldster's HTC V2.0 - von lobo0404 - 05.06.2013, 00:10
RE: oldster's HTC V2.0 - von Japy - 05.06.2013, 01:04
RE: oldster's HTC V2.0 - von lobo0404 - 05.06.2013, 02:01
RE: oldster's HTC V2.0 - von Japy - 05.06.2013, 04:23
oldster's HTC V2.0 - von oldster - 05.06.2013, 06:17
RE: oldster's HTC V2.0 - von Japy - 05.06.2013, 06:53
RE: oldster's HTC V2.0 - von oldster - 05.06.2013, 17:29
RE: oldster's HTC V2.0 - von hgs61 - 05.06.2013, 17:41
oldster's HTC V2.0 - von Gwai - 05.06.2013, 18:13
RE: oldster's HTC V2.0 - von wardog256 - 05.06.2013, 20:16
RE: oldster's HTC V2.0 - von Japy - 05.06.2013, 20:24
RE: oldster's HTC V2.0 - von Gwai - 05.06.2013, 20:32
RE: oldster's HTC V2.0 - von oldster - 05.06.2013, 22:01
RE: oldster's HTC V2.0 - von lobo0404 - 05.06.2013, 23:19
RE: oldster's HTC V2.0 - von Japy - 05.06.2013, 23:35
RE: oldster's HTC V2.0 - von oldster - 06.06.2013, 19:56
RE: oldster's HTC V2.0 - von Kusselin - 06.06.2013, 08:40
oldster's HTC V2.0 - von oldster - 06.06.2013, 09:23
oldster's HTC V2.0 - von Gwai - 06.06.2013, 09:25
RE: oldster's HTC V2.0 - von Kusselin - 06.06.2013, 10:50
oldster's HTC V2.0 - von Gwai - 06.06.2013, 11:26
RE: oldster's HTC V2.0 - von Kusselin - 06.06.2013, 11:30
oldster's HTC V2.0 - von Gwai - 06.06.2013, 11:53
RE: oldster's HTC V2.0 - von Kusselin - 06.06.2013, 12:06
RE: oldster's HTC V2.0 - von Olli - 06.06.2013, 12:36
RE: oldster's HTC V2.0 - von Kusselin - 06.06.2013, 14:44
RE: oldster's HTC V2.0 - von Morpheus71 - 06.06.2013, 13:04
oldster's HTC V2.0 - von Gwai - 06.06.2013, 13:18
RE: oldster's HTC V2.0 - von Hunkebunken - 06.06.2013, 14:22
RE: oldster's HTC V2.0 - von Morpheus71 - 06.06.2013, 16:27
RE: oldster's HTC V2.0 - von Kusselin - 06.06.2013, 21:27
oldster's HTC V2.0 - von Böhse Tina - 06.06.2013, 16:32
RE: oldster's HTC V2.0 - von oldster - 06.06.2013, 16:38
RE: oldster's HTC V2.0 - von Japy - 06.06.2013, 21:12
RE: oldster's HTC V2.0 - von lobo0404 - 07.06.2013, 16:43
RE: oldster's HTC V2.0 - von Olli - 07.06.2013, 16:56
RE: oldster's HTC V2.0 - von doomerino - 07.06.2013, 17:17
RE: oldster's HTC V2.0 - von doomerino - 07.06.2013, 17:38
RE: oldster's HTC V2.0 - von lobo0404 - 07.06.2013, 18:17
RE: oldster's HTC V2.0 - von wardog256 - 07.06.2013, 18:37
RE: oldster's HTC V2.0 - von oldster - 08.06.2013, 06:15
RE: oldster's HTC V2.0 - von oldster - 08.06.2013, 06:54
RE: oldster's HTC V2.0 - von Japy - 08.06.2013, 14:50
RE: oldster's HTC V2.0 - von wardog256 - 08.06.2013, 08:44
RE: oldster's HTC V2.0 - von oldster - 08.06.2013, 11:34
RE: oldster's HTC V2.0 - von wardog256 - 08.06.2013, 09:03
RE: oldster's HTC V2.0 - von oldster - 08.06.2013, 11:40
RE: oldster's HTC V2.0 - von wardog256 - 08.06.2013, 13:23
RE: oldster's HTC V2.0 - von Japy - 08.06.2013, 14:42
RE: oldster's HTC V2.0 - von oldster - 08.06.2013, 20:04
RE: oldster's HTC V2.0 - von hgs61 - 09.06.2013, 10:21
RE: oldster's HTC V2.0 - von wardog256 - 09.06.2013, 12:54
RE: oldster's HTC V2.0 - von oldster - 09.06.2013, 18:06
RE: oldster's HTC V2.0 - von KKunze1959 - 09.06.2013, 14:03
RE: oldster's HTC V2.0 - von hgs61 - 09.06.2013, 15:33
RE: oldster's HTC V2.0 - von Japy - 09.06.2013, 20:59
RE: oldster's HTC V2.0 - von Gwai - 09.06.2013, 21:49
RE: oldster's HTC V2.0 - von Gwai - 10.06.2013, 08:34
RE: oldster's HTC V2.0 - von lobo0404 - 10.06.2013, 09:23
RE: oldster's HTC V2.0 - von oldster - 10.06.2013, 09:50
RE: oldster's HTC V2.0 - von wardog256 - 10.06.2013, 10:20
RE: oldster's HTC V2.0 - von oldster - 10.06.2013, 16:50
RE: oldster's HTC V2.0 - von Gwai - 10.06.2013, 18:13
RE: oldster's HTC V2.0 - von lobo0404 - 10.06.2013, 19:04
RE: oldster's HTC V2.0 - von oldster - 10.06.2013, 19:42
RE: oldster's HTC V2.0 - von Equave - 10.06.2013, 18:32
RE: oldster's HTC V2.0 - von lobo0404 - 10.06.2013, 18:57
RE: oldster's HTC V2.0 - von Gwai - 10.06.2013, 20:57
RE: oldster's HTC V2.0 - von lobo0404 - 10.06.2013, 22:02
RE: oldster's HTC V2.0 - von oldster - 10.06.2013, 22:24
RE: oldster's HTC V2.0 - von Gwai - 10.06.2013, 22:28
RE: oldster's HTC V2.0 - von lobo0404 - 10.06.2013, 23:03
RE: oldster's HTC V2.0 - von oldster - 10.06.2013, 22:31
RE: oldster's HTC V2.0 - von Gwai - 10.06.2013, 22:41
RE: oldster's HTC V2.0 - von oldster - 11.06.2013, 06:28
RE: oldster's HTC V2.0 - von Gwai - 11.06.2013, 07:21
RE: oldster's HTC V2.0 - von oldster - 11.06.2013, 07:33
RE: oldster's HTC V2.0 - von lobo0404 - 11.06.2013, 07:47
RE: oldster's HTC V2.0 - von Japy - 11.06.2013, 07:44
RE: oldster's HTC V2.0 - von lobo0404 - 11.06.2013, 15:39
RE: oldster's HTC V2.0 - von oldster - 11.06.2013, 20:15
RE: oldster's HTC V2.0 - von Japy - 11.06.2013, 21:12
RE: oldster's HTC V2.0 - von lobo0404 - 11.06.2013, 22:08
RE: oldster's HTC V2.0 - von Martins Iphone - 11.06.2013, 22:14
RE: oldster's HTC V2.0 - von Gwai - 11.06.2013, 22:39
RE: oldster's HTC V2.0 - von oldster - 12.06.2013, 07:22
RE: oldster's HTC V2.0 - von Gwai - 12.06.2013, 07:50
RE: oldster's HTC V2.0 - von lobo0404 - 12.06.2013, 08:07
RE: oldster's HTC V2.0 - von Equave - 12.06.2013, 10:26
RE: oldster's HTC V2.0 - von wardog256 - 12.06.2013, 13:21
RE: oldster's HTC V2.0 - von buck - 12.06.2013, 16:03
RE: oldster's HTC V2.0 - von oldster - 12.06.2013, 16:22
RE: oldster's HTC V2.0 - von Gwai - 12.06.2013, 16:51
RE: oldster's HTC V2.0 - von buck - 12.06.2013, 16:59
RE: oldster's HTC V2.0 - von oldster - 12.06.2013, 17:05
RE: oldster's HTC V2.0 - von doomerino - 12.06.2013, 18:19
RE: oldster's HTC V2.0 - von oldster - 12.06.2013, 18:52
RE: oldster's HTC V2.0 - von doomerino - 12.06.2013, 22:43
RE: oldster's HTC V2.0 - von doomerino - 12.06.2013, 23:26
RE: oldster's HTC V2.0 - von Uhoffi - 12.06.2013, 21:36
RE: oldster's HTC V2.0 - von oldster - 13.06.2013, 07:36
RE: oldster's HTC V2.0 - von wardog256 - 13.06.2013, 09:06
RE: oldster's HTC V2.0 - von wardog256 - 13.06.2013, 09:12
RE: oldster's HTC V2.0 - von lobo0404 - 16.06.2013, 21:24
RE: oldster's HTC V2.0 - von oldster - 17.06.2013, 08:20
RE: oldster's HTC V2.0 - von lobo0404 - 17.06.2013, 10:11
RE: oldster's HTC V2.0 - von wardog256 - 17.06.2013, 10:15
RE: oldster's HTC V2.0 - von Gwai - 17.06.2013, 16:52
RE: oldster's HTC V2.0 - von hgs61 - 18.06.2013, 21:13
RE: oldster's HTC V2.0 - von Gwai - 18.06.2013, 22:31
RE: oldster's HTC V2.0 - von doomerino - 20.06.2013, 16:49
RE: oldster's HTC V2.0 - von oldster - 21.06.2013, 17:18
RE: oldster's HTC V2.0 - von lobo0404 - 23.06.2013, 00:22
RE: oldster's HTC V2.0 - von oldster - 23.06.2013, 11:02
RE: oldster's HTC V2.0 - von lobo0404 - 23.06.2013, 13:34
RE: oldster's HTC V2.0 - von oldster - 23.06.2013, 16:01
RE: oldster's HTC V2.0 - von oldster - 23.06.2013, 16:24
RE: oldster's HTC V2.0 - von lobo0404 - 23.06.2013, 18:18
RE: oldster's HTC V2.0 - von oldster - 23.06.2013, 19:18
RE: oldster's HTC V2.0 - von lobo0404 - 23.06.2013, 21:05
RE: oldster's HTC V2.0 - von JH97 - 24.06.2013, 07:37
RE: oldster's HTC V2.0 - von oldster - 24.06.2013, 18:00
RE: oldster's HTC V2.0 - von JH97 - 25.06.2013, 07:25
RE: oldster's HTC V2.0 - von oldster - 25.06.2013, 18:40
RE: oldster's HTC V2.0 - von JH97 - 26.06.2013, 16:11
RE: oldster's HTC V2.0 - von Martins Iphone - 27.06.2013, 03:48
RE: oldster's HTC V2.0 - von oldster - 27.06.2013, 12:56
RE: oldster's HTC V2.0 - von Martins Iphone - 27.06.2013, 19:05
RE: oldster's HTC V2.0 - von oldster - 27.06.2013, 19:19
RE: oldster's HTC V2.0 - von Martins Iphone - 27.06.2013, 20:08
RE: oldster's HTC V2.0 - von oldster - 27.06.2013, 22:38
RE: oldster's HTC V2.0 - von Martins Iphone - 28.06.2013, 07:42
RE: oldster's HTC V2.0 - von oldster - 28.06.2013, 09:44
RE: oldster's HTC V2.0 - von Martins Iphone - 28.06.2013, 14:11
RE: oldster's HTC V2.0 - von oldster - 28.06.2013, 15:43
RE: oldster's HTC V2.0 - von Martins Iphone - 28.06.2013, 19:35
RE: oldster's HTC V2.0 - von oldster - 28.06.2013, 20:01
RE: oldster's HTC V2.0 - von Martins Iphone - 28.06.2013, 21:24
RE: oldster's HTC V2.0 - von buck - 29.06.2013, 12:13
RE: oldster's HTC V2.0 - von Martins Iphone - 29.06.2013, 14:07
RE: oldster's HTC V2.0 - von oldster - 29.06.2013, 14:44
RE: oldster's HTC V2.0 - von Martins Iphone - 29.06.2013, 15:12
RE: oldster's HTC V2.0 - von oldster - 29.06.2013, 15:25
RE: oldster's HTC V2.0 - von Martins Iphone - 29.06.2013, 19:34
RE: oldster's HTC V2.0 - von oldster - 30.06.2013, 09:20
RE: oldster's HTC V2.0 - von Martins Iphone - 29.06.2013, 22:16
RE: oldster's HTC V2.0 - von Japy - 30.06.2013, 10:57
RE: oldster's HTC V2.0 - von Japy - 30.06.2013, 11:05
RE: oldster's HTC V2.0 - von oldster - 30.06.2013, 12:29
RE: oldster's HTC V2.0 - von Japy - 30.06.2013, 12:35
RE: oldster's HTC V2.0 - von Martins Iphone - 30.06.2013, 22:40
RE: oldster's HTC V2.0 - von oldster - 01.07.2013, 07:05
RE: oldster's HTC V2.0 - von Martins Iphone - 01.07.2013, 10:51
RE: oldster's HTC V2.0 - von Martins Iphone - 04.07.2013, 01:33
RE: oldster's HTC V2.0 - von oldster - 04.07.2013, 07:21
RE: oldster's HTC V2.0 - von Martins Iphone - 24.07.2013, 05:25
RE: oldster's HTC V2.0 - von oldster - 24.07.2013, 09:58
RE: oldster's HTC V2.0 - von Martins Iphone - 25.07.2013, 05:08
RE: oldster's HTC V2.0 - von Martins Iphone - 25.07.2013, 05:21
RE: oldster's HTC V2.0 - von oldster - 25.07.2013, 09:28
RE: oldster's HTC V2.0 - von Martins Iphone - 27.07.2013, 03:38
RE: oldster's HTC V2.0 - von Martins Iphone - 28.07.2013, 20:46
RE: oldster's HTC V2.0 - von Martins Iphone - 28.07.2013, 21:23
RE: oldster's HTC V2.0 - von Hunkebunken - 04.10.2013, 23:45
RE: oldster's HTC V2.0 - von Martins Iphone - 24.01.2014, 21:03
RE: oldster's HTC V2.0 - von oldster - 30.01.2014, 16:43
RE: oldster's HTC V2.0 - von M.Age - 23.02.2014, 18:09
RE: oldster's HTC V2.0 - von Gwai - 30.01.2014, 23:05
RE: oldster's HTC V2.0 - von sale3320 - 30.01.2014, 23:23
RE: oldster's HTC V2.0 - von Gwai - 30.01.2014, 23:57
RE: oldster's HTC V2.0 - von Martins Iphone - 01.02.2014, 00:24
RE: oldster's HTC V2.0 - von Martins Iphone - 02.02.2014, 23:53
RE: oldster's HTC V2.0 - von wildbiker - 04.02.2014, 17:51
RE: oldster's HTC V2.0 - von Gwai - 05.02.2014, 00:01
RE: oldster's HTC V2.0 - von wildbiker - 05.02.2014, 07:31
RE: oldster's HTC V2.0 - von lobo0404 - 05.02.2014, 17:20
RE: oldster's HTC V2.0 - von Martins Iphone - 05.02.2014, 17:45
RE: oldster's HTC V2.0 - von Martins Iphone - 06.02.2014, 00:16
RE: oldster's HTC V2.0 - von Kusselin - 06.02.2014, 08:57
RE: oldster's HTC V2.0 - von Martins Iphone - 06.02.2014, 09:25
RE: oldster's HTC V2.0 - von Kusselin - 06.02.2014, 09:40
RE: oldster's HTC V2.0 - von Martins Iphone - 06.02.2014, 10:20
RE: oldster's HTC V2.0 - von Kusselin - 06.02.2014, 10:54
RE: oldster's HTC V2.0 - von Gwai - 06.02.2014, 11:33
RE: oldster's HTC V2.0 - von Kusselin - 06.02.2014, 11:42
RE: oldster's HTC V2.0 - von Gwai - 06.02.2014, 12:08
RE: oldster's HTC V2.0 - von Martins Iphone - 06.02.2014, 13:57
RE: oldster's HTC V2.0 - von Kusselin - 09.02.2014, 18:16
RE: oldster's HTC V2.0 - von Chris - 09.02.2014, 18:44
RE: oldster's HTC V2.0 - von Kusselin - 10.02.2014, 08:15
RE: oldster's HTC V2.0 - von Martins Iphone - 10.02.2014, 09:58
RE: oldster's HTC V2.0 - von Kusselin - 28.05.2014, 17:47
RE: oldster's HTC V2.0 - von Kusselin - 10.02.2014, 14:00
RE: oldster's HTC V2.0 - von *Leopard* - 10.02.2014, 14:09
RE: oldster's HTC V2.0 - von Kusselin - 10.02.2014, 14:15
RE: oldster's HTC V2.0 - von oldster - 23.02.2014, 18:55
RE: oldster's HTC V2.0 - von Kusselin - 10.06.2014, 12:59
RE: oldster's HTC V2.0 - von Kusselin - 16.06.2014, 21:57
RE: oldster's HTC V2.0 - von Kusselin - 04.07.2014, 12:39
RE: oldster's HTC V2.0 - von hell 7 - 04.07.2014, 18:17
RE: oldster's HTC V2.0 - von balli1187 - 28.11.2014, 10:23
RE: oldster's HTC V2.0 - von balli1187 - 03.02.2015, 11:23
RE: oldster's HTC V2.0 - von partychick - 03.02.2015, 19:55
RE: oldster's HTC V2.0 - von balli1187 - 04.02.2015, 18:30
RE: oldster's HTC V2.0 - von partychick - 05.02.2015, 11:36
RE: oldster's HTC V2.0 - von balli1187 - 06.02.2015, 13:50
RE: oldster's HTC V2.0 - von partychick - 06.02.2015, 14:00
RE: oldster's HTC V2.0 - von balli1187 - 06.02.2015, 21:03
RE: oldster's HTC V2.0 - von hell 7 - 07.02.2015, 14:02
RE: oldster's HTC V2.0 - von balli1187 - 09.02.2015, 13:56
RE: oldster's HTC V2.0 - von hell 7 - 09.02.2015, 21:03
RE: oldster's HTC V2.0 - von balli1187 - 10.02.2015, 18:29
RE: oldster's HTC V2.0 - von hell 7 - 10.02.2015, 20:45
oldster's HTC V2.0 - von balli1187 - 12.02.2015, 08:52
RE: oldster's HTC V2.0 - von hell 7 - 15.02.2015, 11:43
RE: oldster's HTC V2.0 - von Mixbambullis - 15.02.2015, 15:41
RE: oldster's HTC V2.0 - von partychick - 15.02.2015, 16:33
RE: oldster's HTC V2.0 - von Mixbambullis - 15.02.2015, 18:04
RE: oldster's HTC V2.0 - von partychick - 15.02.2015, 18:08
RE: oldster's HTC V2.0 - von Mixbambullis - 15.02.2015, 18:22
RE: oldster's HTC V2.0 - von Portier1 - 24.02.2015, 13:11
RE: oldster's HTC V2.0 - von hell 7 - 25.02.2015, 13:06
RE: oldster's HTC V2.0 - von Portier1 - 25.02.2015, 17:40
RE: oldster's HTC V2.0 - von Portier1 - 26.02.2015, 09:08
RE: oldster's HTC V2.0 - von hell 7 - 26.02.2015, 09:36
RE: oldster's HTC V2.0 - von Portier1 - 26.02.2015, 09:45
RE: oldster's HTC V2.0 - von hgs61 - 13.03.2015, 18:25
oldster's HTC V2.0 - von balli1187 - 13.03.2015, 23:12
RE: oldster's HTC V2.0 - von hgs61 - 14.03.2015, 14:37
oldster's HTC V2.0 - von balli1187 - 14.03.2015, 15:28
RE: oldster's HTC V2.0 - von hgs61 - 14.03.2015, 17:01
oldster's HTC V2.0 - von balli1187 - 14.03.2015, 17:41
RE: oldster's HTC V2.0 - von hgs61 - 14.03.2015, 19:27
RE: oldster's HTC V2.0 - von Martins Iphone - 27.03.2016, 23:54
RE: oldster's HTC V2.0 - von hgs61 - 28.03.2016, 10:24
RE: oldster's HTC V2.0 - von Martins Iphone - 28.03.2016, 16:04
RE: oldster's HTC V2.0 - von Uhoffi - 14.04.2016, 22:17
RE: oldster's HTC V2.0 - von Martins Iphone - 18.04.2016, 00:37
RE: oldster's HTC V2.0 - von Martins Iphone - 18.04.2016, 00:44
RE: oldster's HTC V2.0 - von Uhoffi - 18.04.2016, 10:41
RE: oldster's HTC V2.0 - von Martins Iphone - 18.04.2016, 18:45
RE: oldster's HTC V2.0 - von Martins Iphone - 18.04.2016, 19:00
RE: oldster's HTC V2.0 - von Uhoffi - 18.04.2016, 20:12
RE: oldster's HTC V2.0 - von Martins Iphone - 19.04.2016, 22:08
RE: oldster's HTC V2.0 - von Martins Iphone - 20.04.2016, 20:08
RE: oldster's HTC V2.0 - von Uhoffi - 25.04.2016, 12:57
RE: oldster's HTC V2.0 - von Martins Iphone - 25.04.2016, 23:39
RE: oldster's HTC V2.0 - von Ladyhoney - 26.04.2016, 09:54
RE: oldster's HTC V2.0 - von Uhoffi - 26.04.2016, 11:49
RE: oldster's HTC V2.0 - von Ladyhoney - 26.04.2016, 12:48
RE: oldster's HTC V2.0 - von Uhoffi - 27.04.2016, 21:27
RE: oldster's HTC V2.0 - von Martins Iphone - 27.04.2016, 22:01
RE: oldster's HTC V2.0 - von Ladyhoney - 27.04.2016, 22:21
RE: oldster's HTC V2.0 - von wardog256 - 28.04.2016, 10:21
RE: oldster's HTC V2.0 - von schalker44 - 28.04.2016, 11:56
RE: oldster's HTC V2.0 - von Uhoffi - 28.04.2016, 12:25
RE: oldster's HTC V2.0 - von wardog256 - 28.04.2016, 13:03
RE: oldster's HTC V2.0 - von wardog256 - 28.04.2016, 14:02
RE: oldster's HTC V2.0 - von Uhoffi - 28.04.2016, 15:02
RE: oldster's HTC V2.0 - von wardog256 - 28.04.2016, 19:32
RE: oldster's HTC V2.0 - von Martins Iphone - 28.04.2016, 23:07
RE: oldster's HTC V2.0 - von Uhoffi - 01.05.2016, 19:09
RE: oldster's HTC V2.0 - von Martins Iphone - 01.05.2016, 20:34
RE: oldster's HTC V2.0 - von Uhoffi - 01.05.2016, 21:51
RE: oldster's HTC V2.0 - von Martins Iphone - 07.05.2016, 23:48
RE: oldster's HTC V2.0 - von Uhoffi - 08.05.2016, 13:53
RE: oldster's HTC V2.0 - von Martins Iphone - 08.05.2016, 21:17
RE: oldster's HTC V2.0 - von Uhoffi - 09.05.2016, 08:00
RE: oldster's HTC V2.0 - von Martins Iphone - 09.05.2016, 09:31
RE: oldster's HTC V2.0 - von Uhoffi - 09.05.2016, 12:03
RE: oldster's HTC V2.0 - von Recovery - 14.05.2016, 08:12
RE: oldster's HTC V2.0 - von Recovery - 14.05.2016, 09:00
RE: oldster's HTC V2.0 - von Uhoffi - 14.05.2016, 13:08
RE: oldster's HTC V2.0 - von Recovery - 14.05.2016, 19:20
RE: oldster's HTC V2.0 - von Recovery - 14.05.2016, 20:09
RE: oldster's HTC V2.0 - von Uhoffi - 15.05.2016, 08:50
RE: oldster's HTC V2.0 - von toptac - 15.05.2016, 13:09
RE: oldster's HTC V2.0 - von Recovery - 15.05.2016, 12:45
RE: oldster's HTC V2.0 - von Uhoffi - 15.05.2016, 14:51
RE: oldster's HTC V2.0 - von toptac - 15.05.2016, 18:02
RE: oldster's HTC V2.0 - von Recovery - 15.05.2016, 15:28
RE: oldster's HTC V2.0 - von Uhoffi - 15.05.2016, 15:46
RE: oldster's HTC V2.0 - von Recovery - 15.05.2016, 15:55
RE: oldster's HTC V2.0 - von Uhoffi - 15.05.2016, 16:05
RE: oldster's HTC V2.0 - von Recovery - 15.05.2016, 16:58
RE: oldster's HTC V2.0 - von Uhoffi - 15.05.2016, 19:24
RE: oldster's HTC V2.0 - von toptac - 15.05.2016, 21:04
RE: oldster's HTC V2.0 - von toptac - 15.05.2016, 21:17
RE: oldster's HTC V2.0 - von Recovery - 16.05.2016, 00:55
RE: oldster's HTC V2.0 - von Martins Iphone - 16.05.2016, 01:11
RE: oldster's HTC V2.0 - von Uhoffi - 16.05.2016, 18:39
RE: oldster's HTC V2.0 - von toptac - 16.05.2016, 05:52
RE: oldster's HTC V2.0 - von Uhoffi - 16.05.2016, 08:17
RE: oldster's HTC V2.0 - von toptac - 16.05.2016, 08:24
RE: oldster's HTC V2.0 - von Uhoffi - 16.05.2016, 08:30
RE: oldster's HTC V2.0 - von toptac - 16.05.2016, 08:49
RE: oldster's HTC V2.0 - von Uhoffi - 16.05.2016, 09:35
RE: oldster's HTC V2.0 - von toptac - 16.05.2016, 09:46
RE: oldster's HTC V2.0 - von Uhoffi - 16.05.2016, 10:53
RE: oldster's HTC V2.0 - von Uhoffi - 17.05.2016, 07:45
RE: oldster's HTC V2.0 - von Recovery - 17.05.2016, 09:27
RE: oldster's HTC V2.0 - von Uhoffi - 17.05.2016, 10:57
RE: oldster's HTC V2.0 - von Uhoffi - 17.05.2016, 21:34
RE: oldster's HTC V2.0 - von Recovery - 18.05.2016, 00:46
RE: oldster's HTC V2.0 - von toptac - 18.05.2016, 06:09
RE: oldster's HTC V2.0 - von toptac - 19.05.2016, 17:31
RE: oldster's HTC V2.0 - von Uhoffi - 18.05.2016, 20:25
RE: oldster's HTC V2.0 - von Recovery - 19.05.2016, 01:54
RE: oldster's HTC V2.0 - von Recovery - 19.05.2016, 02:30
RE: oldster's HTC V2.0 - von Recovery - 19.05.2016, 02:52
RE: oldster's HTC V2.0 - von Recovery - 20.05.2016, 00:53
RE: oldster's HTC V2.0 - von Uhoffi - 20.05.2016, 12:16
RE: oldster's HTC V2.0 - von Recovery - 20.05.2016, 22:16
RE: oldster's HTC V2.0 - von Uhoffi - 21.05.2016, 07:56
RE: oldster's HTC V2.0 - von Recovery - 21.05.2016, 10:01
RE: oldster's HTC V2.0 - von Uhoffi - 21.05.2016, 12:13
RE: oldster's HTC V2.0 - von toptac - 22.05.2016, 05:35
RE: oldster's HTC V2.0 - von schalker44 - 22.05.2016, 12:56
RE: oldster's HTC V2.0 - von toptac - 22.05.2016, 18:37
RE: oldster's HTC V2.0 - von Uhoffi - 22.05.2016, 18:59
RE: oldster's HTC V2.0 - von toptac - 22.05.2016, 19:13
RE: oldster's HTC V2.0 - von Uhoffi - 22.05.2016, 19:33
RE: oldster's HTC V2.0 - von toptac - 22.05.2016, 19:38
RE: oldster's HTC V2.0 - von Uhoffi - 22.05.2016, 20:14
RE: oldster's HTC V2.0 - von Recovery - 24.05.2016, 14:38
RE: oldster's HTC V2.0 - von Uhoffi - 01.06.2016, 20:50
RE: oldster's HTC V2.0 - von Recovery - 02.06.2016, 13:07
RE: oldster's HTC V2.0 - von Uhoffi - 03.06.2016, 12:18
RE: oldster's HTC V2.0 - von Recovery - 03.06.2016, 22:23
RE: oldster's HTC V2.0 - von Recovery - 13.06.2016, 09:03
RE: oldster's HTC V2.0 - von Recovery - 26.06.2016, 20:42
RE: oldster's HTC V2.0 - von Recovery - 08.08.2016, 13:13
RE: oldster's HTC V2.0 - von Uhoffi - 09.08.2016, 07:00
RE: oldster's HTC V2.0 - von Recovery - 28.09.2016, 21:29
RE: oldster's HTC V2.0 - von Recovery - 15.10.2016, 11:33
RE: oldster's HTC V2.0 - von Uhoffi - 15.10.2016, 11:57
RE: oldster's HTC V2.0 - von Recovery - 15.10.2016, 14:55
RE: oldster's HTC V2.0 - von Martins Iphone - 16.10.2016, 23:12
RE: oldster's HTC V2.0 - von Recovery - 17.10.2016, 09:30
RE: oldster's HTC V2.0 - von Martins Iphone - 21.10.2016, 18:12
RE: oldster's HTC V2.0 - von Recovery - 21.10.2016, 22:48
RE: oldster's HTC V2.0 - von Martins Iphone - 07.01.2017, 01:03
RE: oldster's HTC V2.0 - von Uhoffi - 07.01.2017, 10:48
oldster's HTC V2.0 - von Kusselin - 06.08.2017, 09:06
RE: Oldsters HTC V2.0 - von Böhse Tina - 06.08.2017, 09:53
Oldsters HTC V2.0 - von Kusselin - 20.09.2017, 11:58



Benutzer, die gerade dieses Thema anschauen: 1 Gast/Gäste