Jump to content

Cayen

Civilian
  • Posts

    886
  • Joined

  • Last visited

Posts posted by Cayen

  1. alright i like the store fron with the little window but this happens when u look at it from both sides

    post-1382-1303622529_thumb.jpg inside

    post-1382-1303622549_thumb.jpg outside

    but keep the window but mabey make the side of the storefront look like this if you can

    post-1382-1303622590_thumb.jpg

    the building to the rleft of spawn would make a great lookout for the flag

    post-1382-1303622633_thumb.jpg

    post-1382-1303622676_thumb.jpg

    if possible make the allied sniper house to the left overlooking bridge connect to sewers?

    post-1382-1303622736_thumb.jpg

    either the bed or the clothe thing moveable to barricade with

    post-1382-1303622799_thumb.jpg

    and here is a view of the rooftop for all of you guys!

    post-1382-1303622836_thumb.jpg

    and also this...

    post-1382-1303622890_thumb.jpg

    thats all i have for tonight see ya, p.s. i love the new house to the right side of bridge just needs moveable furniture to barricade or something other then that its all good for now

    and errors are gone now its just checkered materials sometimes as in the new building above church and the new allied sniper house top floor

  2. Honestly i love it how it is, the skybox for some reason is glitched and i see every movement in the sky its not normal. and these are my suggestions do of them as you like

    i couldnt find anywhere that i could get stuck for now but ill keep going at it for bugs and glitches leaks, all of that stuff.

    for this picture the floor of the building shows up as black and purple so idk if its my side or a map error

    post-1382-1303601148_thumb.jpg

    ths is what i mean by the skybox screwing up for me

    post-1382-1303601206_thumb.jpg

    maybe open up the door to the right that is blocked by a fence, if it can be made as a usefull sniper spot, this is the building to the left of axis 1st flag

    post-1382-1303601259_thumb.jpg

    ive got an error i cant see the plane above the church

    post-1382-1303601338_thumb.jpg

    mabey make a small store front like on the road to axis second flag on donner, next to the sniper house

    post-1382-1303601384_thumb.jpg

    open up the door for ease of acces mabey?

    post-1382-1303601477_thumb.jpg

    this is the sniper window overlooking bridge allied side i get errors and material errors

    post-1382-1303601519_thumb.jpg

    make a small building with one oen window?

    post-1382-1303601574_thumb.jpg

    and the last one for now would be

    post-1382-1303601626_thumb.jpg

    make the 2nd roof accesible mabey

    post-1382-1303601654_thumb.jpg

  3. I agree with all that has been said.

    But, fairly often a bunch of Privates (such as myself) and other low-ranking Raiders are playing and a problem arises. This happens frequently with a packed server, and with no admin in sight, the problem worsens. My idea is to increase the amount of admins JUST SO SLIGHTLY, maybe 1-3 more that are more active than others? Just an idea I had..

    Trust me McGeough when i say this we have more then enough admins here is just a quick insight everyone that is SSgt. and up has adminwhich is actually a very good amount of the 1st MRB, second you and others should add everyone to you re friends list especially admins and if the server is full when u ask for help tell the admin who is doing it then leave the server for the admin to join.

    Second we dont always have the time to admin the server me personally yes im in vent and steam at the same time but i like other games and i also do other things at the same time, like go on photoshop and such, and we arent really attack dogs so when asking for admin help be polite :), thats all i had to say on this.

  4. Alright yet another problem i cant remember how to make a usefull alert() window, to show the information gathered from the name and everything this is the question.

    so yeah if i didnt explain clearly enough i will be on vent at around 4 pm eastern, to get help thanks for all the help i got already guys.

    Pour cette tâche vous devrez utiliser votre connaissance des tableaux et des boîtes de dialogue.

    Dans une premier temps vous devrez définir un tableau de 3 éléments. Chacun des éléments sera associé à un prénom différent.

    Ensuite vous devrez réaliser une première fonctions qui permettera d'ajouter un prénom dans le tableau. La fonction prendra en paramètre le tableau préalablement créé et retournera un tableau contenant un élément supplémentaire dont la valeur sera le prénom que l'on souhaite ajouter. Vous devrez utiliser la boîte de dialogue de type prompt pour demander à l'usager de spécifier le prénom qu'il souhaite ajouter au tableau.

    Vous devrez également réaliser une seconde fonction qui aura pour but d'afficher les prénom qui sont compris dans les différents éléments du tableau. Cette fonction prendra également le tableau en paramètre et procèdera à l'affichage des noms à l'aide d'une boîte de dialogue de type alert qui contient l'ensemble des prénom séparé par des ";".

    <html>
    <head>
    <title>Ex. 4</title>
    <Table border="1" cellpading="5">
    <FORM name="mon_formulaire">
    <tr><td><INPUT type=text  value="" name="mon_champ_texte" onBlur="this.style.backgroundColor='yellow'"  readonly ><INPUT type=button value="Prenom" onClick="PromptMessage()"></tr></td>
    </FORM>
    <script language=javascript>
       function PromptMessage() {
           var saisie = prompt("Saisissez votre texte :", "Texte par défaut")
           if (saisie!=null) {
               document.forms["mon_formulaire"].elements["mon_champ_texte"].value=saisie;
           }
       }
    </SCRIPT>
    <FORM name="mon_formulaire1">
    <tr><td><INPUT type=text  value="" name="mon_champ_texte1" onBlur="this.style.backgroundColor='yellow'"  readonly ><INPUT type=button value="Nom" onClick="PromptMessage1()"></tr></td>
    </FORM>
    <script language=javascript>
       function PromptMessage1() {
           var saisie1 = prompt("Saisissez votre texte :", "Texte par défaut")
           if (saisie1!=null) {
               document.forms["mon_formulaire1"].elements["mon_champ_texte1"].value=saisie1;
           }
       }
    </SCRIPT>
    <FORM name="mon_formulaire2">
    <tr><td><INPUT type=text  value="" name="mon_champ_texte2" onBlur="this.style.backgroundColor='yellow'"  readonly ><INPUT type=button value="Age" onClick="PromptMessage2()"></tr></td>
    </FORM>
    <script language=javascript>
       function PromptMessage2() {
           var saisie2 = prompt("Saisissez votre texte :", "Texte par défaut")
           if (saisie2!=null) {
               document.forms["mon_formulaire2"].elements["mon_champ_texte2"].value=saisie2;
           }
       }
       </SCRIPT>
       <FORM name="mon_formulaire3">
       <tr><td><INPUT type=button value="Afficher donnée" name="">
        <script language=javascript>
        function  promptmessage3() {
        var a = "mon_formulaire";
        var b = "mon_formulaire1";
        var c = "mon_formulaire2";
        var d = a+b+c
           var vos_donnée = alert(d);
           if (vos_donnée!=null) {
                
           }
        }  
    </SCRIPT>
    <body bgcolor="Blue">
    </body>
    </html>

  5. Here is my roomie who got me into it i didnt get a pic of my first iad however this is him in his tony suit over haskell airport in oklahoma! best equipment to take pics for skydiving is the gopro a little bit costly but definately pays off in the end!

    danielherndon.png

    Uploaded with ImageShack.us

    thats wicked man if i could do it once i would its on my list for sure :P

×
×
  • Create New...