Hello Guest, please login or register.
Did you miss your activation email?
Login with username, password and session length.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Topics - PoeFacedKilla

Pages: 1 [2] 3 4
21
Coding / Saving Files [GM]
« on: April 07, 2009, 08:07:28 pm »
How do you make a file unable to read by players, while being able to draw it in GML?

22
Coding / [GM6] Won't Declare a Variable
« on: April 06, 2009, 02:34:04 am »
I'm trying, to load a sprite from a .sav file.  But the variable won't declare:

Code: [Select]
{

   
    ini_open('1.sav');
    box_color = ini_read_string('Character','sprite','1');
   
    ini_close();
   

   
}

and then under create for the object:

Code: [Select]
{

    if( box_color == "1" )
    {
    sprite_index = sprite_red;
    }

   
}

but it says unknown variable.

23
Coding / Can Someone Help?
« on: December 28, 2007, 06:10:27 pm »


When i use:
Code: [Select]
<?php

    
function subrosian_create(){

        global 
$tattoo_array$tattoo_data$tattoo_rows;
        
$f_args func_get_args();
        
$f_num_args func_num_args();

        
$subrosian_colors = array(
            
"black"=>array(0,0,0),
            
"blue"=>array(30,40,220),
            
"brown"=>array(147,117,27),
            
"green"=>array(30,220,40),
            
"pink"=>array(255,160,160),
            
"purple"=>array(220,30,220),
            
"red"=>array(255,0,0),
            
"turquoise"=>array(30,220,220),
            
"white"=>array(255,255,255),
            
"yellow"=>array(220,220,30),
            
"custom"=>array(255,160,160)
        );

        
// Load templates

        
$src_b_path $_SERVER[&#39;DOCUMENT_ROOT&#39;]."/images/main/template.bottom.gif";
        
$src_o_path $_SERVER[&#39;DOCUMENT_ROOT&#39;]."/images/main/template.overlay.gif";
        
$src_o2_path $_SERVER[&#39;DOCUMENT_ROOT&#39;]."/images/main/template.overlay_2.gif";
        
$dest_path $_SERVER[&#39;DOCUMENT_ROOT&#39;]."/images/main/Members/".(($f_num_args > 3)? "temporary/":"").$f_args[0].".large.gif";
        
$dest_fpath $_SERVER[&#39;DOCUMENT_ROOT&#39;]."/images/main/Members/".(($f_num_args > 3)? "temporary/":"").$f_args[0].".forum.gif";
        
$dest_spath $_SERVER[&#39;DOCUMENT_ROOT&#39;]."/images/main/Members/".(($f_num_args > 3)? "temporary/":"").$f_args[0].".skin.gif";
        
$src_b_fileinfo getimagesize($src_b_path);
        
$src_o_fileinfo getimagesize($src_o_path);
    
        
// Make sources for large image with green background

        
$img_b_src imagecreatefromgif($src_b_path);
        
$img_o_src imagecreatefromgif($src_o_path);
        
$img_b_dest imagecreatetruecolor($src_b_fileinfo[0],$src_b_fileinfo[1]);
        
$img_o_dest imagecreatetruecolor($src_o_fileinfo[0],$src_o_fileinfo[1]);

        
// Make sources for squared forum image

        
$img_fb_src imagecreatefromgif($src_b_path);
        
$img_fo_src imagecreatefromgif($src_o_path);
        
$img_fb_dest imagecreatetruecolor($src_b_fileinfo[0],$src_b_fileinfo[0]);
        
$img_fo_dest imagecreatetruecolor($src_o_fileinfo[0],$src_o_fileinfo[0]);

        
// Make sources for subrosian skin

        
$img_sb_src imagecreatefromgif($src_b_path);
        
$img_so_src imagecreatefromgif($src_o_path);
        
$img_so2_src imagecreatefromgif($src_o2_path);
        
$img_sb_dest imagecreatetruecolor($src_b_fileinfo[0],$src_b_fileinfo[1]);
        
$img_so_dest imagecreatetruecolor($src_o_fileinfo[0],$src_o_fileinfo[1]);

        
// Load tattoos
        
if(is_array($f_args[1][&#39;tattoo&#39;])){
            
$tattoo_src = array();
            
$tattoo_info = array();
            
$tattoo_fileinfo = array();
            
data_fetch("tattoo","SELECT * FROM `subrosian_tattoos` WHERE `ready`=1");
            for(
$i=0;$i<$tattoo_rows;$i++,$tattoo_data mysql_fetch_array($tattoo_array)){
                
$tattoo_info[$tattoo_data[&#39;id&#39;]] = $tattoo_data;
            
}
            foreach(
$f_args[1][&#39;tattoo&#39;] as $main_key => $main_content){
                
$tattoo_file $_SERVER[&#39;DOCUMENT_ROOT&#39;]."/images/main/Tattoos/tattoo".$main_content.".".$tattoo_info[$main_content][&#39;filetype&#39;];
                
$tattoo_image getimagesize($tattoo_file);
                switch(
$tattoo_image[2]){
                    case 
1:
                        
$tattoo_src[$main_content] = imagecreatefromgif($tattoo_file);
                        break;
                    case 
2:
                        
$tattoo_src[$main_content] = imagecreatefromjpeg($tattoo_file);
                        break;
                    case 
3:
                        
$tattoo_src[$main_content] = imagecreatefrompng($tattoo_file);
                        break;
                }
                
$tattoo_fileinfo[$main_content] = array($tattoo_file,$tattoo_image);
            }
        }

        
// Create colors
        
if(is_array($f_args[1])){
            
$col_main imagecolorallocatealpha($img_o_dest,$f_args[1][&#39;color_fur&#39;][0],$f_args[1][&#39;color_fur&#39;][1],$f_args[1][&#39;color_fur&#39;][2],70);
        
} else {
            
$col_main imagecolorallocatealpha($img_o_dest,$subrosian_colors[$f_args[1]][0],$subrosian_colors[$f_args[1]][1],$subrosian_colors[$f_args[1]][2],70);
        }
        
$col_line imagecolorallocatealpha($img_fo_dest,99,108,90,0);
        
$col_bg imagecolorallocatealpha($img_fo_dest,148,156,139,0);
        
$col_text imagecolorallocate($img_fo_dest,47,52,43);
        
$col_admin imagecolorallocate($img_fo_dest,195,176,89);
        
$col_mod imagecolorallocate($img_fo_dest,181,89,60);
    
        
// Create large image with green background
    
        
imagealphablending($img_o_dest,true);
        
imageantialias($img_o_dest,true);
    
        
imagecopy($img_o_dest,$img_o_src,0,0,0,0,$src_o_fileinfo[0],$src_o_fileinfo[1]);
        
imagefilledrectangle($img_o_dest,0,0,$src_o_fileinfo[0],$src_o_fileinfo[1],$col_main);
        
imagetruecolortopalette($img_o_dest,true,50);
        
imagecolortransparent($img_o_dest,imagecolorat($img_o_dest,0,0));
    
        
imagecopy($img_b_dest,$img_b_src,0,0,0,0,$src_b_fileinfo[0],$src_b_fileinfo[1]);
        
imagecopy($img_b_dest,$img_o_dest,0,0,0,0,$src_o_fileinfo[0],$src_o_fileinfo[1]);

        
// insert tattoos
        
if(is_array($f_args[1][&#39;tattoo&#39;])){
            
foreach($f_args[1][&#39;tattoo&#39;] as $main_key => $main_content){
                
$img_b_dest tattoo_imprint($img_b_dest,$tattoo_src[$main_content],$tattoo_fileinfo[$main_content][1],$tattoo_info[$main_content]);
            }
        }
    
        
imagetruecolortopalette($img_b_dest,true,60);
        
imagegif($img_b_dest,$dest_path);
    
        
imagedestroy($img_b_src);
        
imagedestroy($img_o_src);
        
imagedestroy($img_b_dest);
        
imagedestroy($img_o_dest);
    
        
// Create squared image for forum
    
        
$font_src $_SERVER[&#39;DOCUMENT_ROOT&#39;]."/includes/myriad.ttf";
    
        
imagealphablending($img_fo_dest,true);
        
imageantialias($img_fo_dest,true);
        
imageantialias($img_fb_dest,true);
        
imagesetthickness($img_fb_dest,2);
    
        
imagecopy($img_fo_dest,$img_fo_src,0,0,0,0,$src_o_fileinfo[0],$src_o_fileinfo[0]);
        
imagefilledrectangle($img_fo_dest,0,0,$src_o_fileinfo[0],$src_o_fileinfo[0],$col_main);
        
imagetruecolortopalette($img_fo_dest,true,50);
        
imagecolortransparent($img_fo_dest,imagecolorat($img_fo_dest,0,0));
    
        
imagecopy($img_fb_dest,$img_fb_src,0,0,0,0,$src_b_fileinfo[0],$src_b_fileinfo[0]);
        
imagecopy($img_fb_dest,$img_fo_dest,0,0,0,0,$src_o_fileinfo[0],$src_o_fileinfo[0]);

        
// insert tattoos
        
if(is_array($f_args[1][&#39;tattoo&#39;])){
            
foreach($f_args[1][&#39;tattoo&#39;] as $main_key => $main_content){
                
$img_fb_dest tattoo_imprint($img_fb_dest,$tattoo_src[$main_content],$tattoo_fileinfo[$main_content][1],$tattoo_info[$main_content]);
            }
        }
    
        
imagerectangle($img_fb_dest,0,1,($src_b_fileinfo[0]-1),($src_b_fileinfo[0]-2),$col_line);
        
imageline($img_fb_dest,0,($src_b_fileinfo[0]-16),$src_b_fileinfo[0],($src_b_fileinfo[0]-16),$col_line);
        
imagefilledrectangle($img_fb_dest,16,($src_b_fileinfo[0]-15),($src_b_fileinfo[0]-3),($src_b_fileinfo[0]-3),$col_bg);

        if(
$f_args[2] == &#39;administrator&#39;){
            
imagefilledrectangle($img_fb_dest,2,($src_b_fileinfo[0]-15),15,($src_b_fileinfo[0]-3),$col_admin);
            
imageline($img_fb_dest,16,($src_b_fileinfo[0]-15),16,($src_b_fileinfo[0]-2),$col_line);
            
imagettftext($img_fb_dest,8,0,7,($src_b_fileinfo[0]-5),$col_text,$font_src,"a");
        } elseif(
$f_args[2] == &#39;moderator&#39;){
            
imagefilledrectangle($img_fb_dest,2,($src_b_fileinfo[0]-15),15,($src_b_fileinfo[0]-3),$col_mod);
            
imageline($img_fb_dest,16,($src_b_fileinfo[0]-15),16,($src_b_fileinfo[0]-2),$col_line);
            
imagettftext($img_fb_dest,8,0,6,($src_b_fileinfo[0]-5),$col_text,$font_src,"m");
        } else{
            
imagefilledrectangle($img_fb_dest,2,($src_b_fileinfo[0]-15),15,($src_b_fileinfo[0]-3),$col_line);
        }
    
        
imagettftext($img_fb_dest,8,0,20,($src_b_fileinfo[0]-5),$col_text,$font_src,$f_args[0]);
    
        
imagetruecolortopalette($img_fb_dest,true,60);
        
imagegif($img_fb_dest,$dest_fpath);
    
        
imagedestroy($img_fb_src);
        
imagedestroy($img_fo_src);
        
imagedestroy($img_fb_dest);
        
imagedestroy($img_fo_dest);
    
        
// Create colored subrosian skin

        
imagealphablending($img_sb_dest,true);
        
imageantialias($img_sb_dest,true);
    
        
imagecopy($img_sb_dest,$img_so_src,0,0,0,0,$src_o_fileinfo[0],$src_o_fileinfo[1]);
        
imagefilledrectangle($img_sb_dest,0,0,$src_o_fileinfo[0],$src_o_fileinfo[1],$col_main);

        
// insert tattoos
        
if(is_array($f_args[1][&#39;tattoo&#39;])){
            
foreach($f_args[1][&#39;tattoo&#39;] as $main_key => $main_content){
                
$img_sb_dest tattoo_imprint($img_sb_dest,$tattoo_src[$main_content],$tattoo_fileinfo[$main_content][1],$tattoo_info[$main_content]);
            }
        }

        
imagefilter($img_so2_src,IMG_FILTER_NEGATE);
        
imagecolortransparent($img_so2_src,imagecolorat($img_so2_src,50,70));
        
imagecopy($img_sb_dest,$img_so2_src,0,0,0,0,$src_o_fileinfo[0],$src_o_fileinfo[1]);
    
        
imagetruecolortopalette($img_sb_dest,true,50);
        
imagecolortransparent($img_sb_dest,imagecolorat($img_sb_dest,0,0));
        
imagegif($img_sb_dest,$dest_spath);
    
        
imagedestroy($img_sb_src);
        
imagedestroy($img_so_src);
        
imagedestroy($img_sb_dest);
        
imagedestroy($img_so_dest);

        
// Destroy tattoo sources
        
if(is_array($f_args[1][&#39;tattoo&#39;])){
            
foreach($tattoo_src as $main_key => $main_content){
                
imagedestroy($tattoo_src[$main_key]);
            }
        }
    }

        function 
tattoo_imprint(){
            
// imprint tattoo on custom subrosian
            // input:    [0]=>destination handle, [1]=>tattoo source
            //        [2]=>image fileinfo (array), [3]=>image db data (array)

            
$function_arguments func_get_args();

            
$image_fileinfo2 $function_arguments[2];
            
$image_data $function_arguments[3];

            
$image_width3 $image_data[&#39;scale&#39;]/100*($image_fileinfo2[0]*abs(cos(M_PI*$image_data[&#39;rotation&#39;]/180)) + $image_fileinfo2[1]*abs(sin(M_PI*$image_data[&#39;rotation&#39;]/180)));
            
$image_height3 $image_data[&#39;scale&#39;]/100*($image_fileinfo2[0]*abs(sin(M_PI*$image_data[&#39;rotation&#39;]/180)) + $image_fileinfo2[1]*abs(cos(M_PI*$image_data[&#39;rotation&#39;]/180)));
            
$image_src3 imagecreatetruecolor($image_width3,$image_height3);

            
$image_width2 $image_width3*100/$image_data[&#39;scale&#39;];
            
$image_height2 $image_height3*100/$image_data[&#39;scale&#39;];
            
$image_src2 imagerotate($function_arguments[1],$image_data[&#39;rotation&#39;],imagecolorat($function_arguments[1],0,0));

            
imagecopyresized($image_src3,$image_src2,0,0,0,0,$image_width3,$image_height3,$image_width2,$image_height2);
            
imagetruecolortopalette($image_src3,0,2);
            
imagecolortransparent($image_src3,imagecolorat($image_src3,0,0));
            
imagecopymerge($function_arguments[0],$image_src3,$image_data[&#39;x&#39;],$image_data[&#39;y&#39;],0,0,$image_width3,$image_height3,$image_data[&#39;strength&#39;]);

            
imagedestroy($image_src3);
            
imagedestroy($image_src2);

            return(
$function_arguments[0]);
        }
?>

i get:
Fatal error: Call to undefined function imagettftext() in /home/zshrine/public_html/Members/apply.
color.php on line 154

But see it worked on my old server, and they both had the same php, can someone tell me how I can fix this?

24
Entertainment / OoT Speed Run
« on: October 08, 2007, 02:00:59 pm »
Does anyone know where i can find the original TSA speedrun in 1 file?

25
Coding / C++ Allegro
« on: September 30, 2007, 04:49:57 am »
I've been working on a breakout game in C++ Allegro, i've gotten the main scroll left and right engine down, but when i try to make collision it won't move and it starts exactly where i don't want it too.
Code: [Select]
#include <a llegro.h>

void init();
void deinit();

int main() {
init();
/* Bar */
BITMAP *bar = NULL;
bar = load_bitmap("bar.bmp", NULL);
/* Buffer */
BITMAP *buffer = NULL;
buffer = create_bitmap(640,480);
/* Walls */
BITMAP *wall = NULL;
wall = load_bitmap("side.bmp", NULL);
/* Walking Engine */
int sprite_x = -100;
int wall_1_x = 0;
while (!key[KEY_ESC]) {
if(key[KEY_LEFT]) {
sprite_x--;
} else if(key[KEY_RIGHT]) {
sprite_x++;
}
/* Into 1st Wall */
if(sprite_x = 0) {
sprite_x++;
}
draw_sprite(buffer, bar, sprite_x, 0);
draw_sprite(buffer, wall, 0, 0);
blit(buffer, screen, 0, 0, 0, 0, 640, 480);
}

deinit();
return 0;
}
END_OF_MAIN()

void init() {
int depth, res;
allegro_init();
depth = desktop_color_depth();
if (depth == 0) depth = 32;
set_color_depth(depth);
res = set_gfx_mode(GFX_AUTODETECT_WINDOWED, 640, 480, 0, 0);
if (res != 0) {
allegro_message(allegro_error);
exit(-1);
}

install_timer();
install_keyboard();
install_mouse();
/* add other initializations here */
}

void deinit() {
clear_keybuf();
/* add other deinitializations here */
}

26
I am now running off of SUSE linux 10.1, but when i try to open .package files for anything it says:
gedit was not able to detect the character encoding... can anyone tell me whats wrong?

27
Coding / C++ Workin with files
« on: May 29, 2007, 03:28:26 am »
Is it possible to load code from a .txt file? like if i put cout<<"This is From a File";
it would show that in the program?

28
Coding / Switching to Cookies
« on: May 20, 2007, 06:07:42 pm »
I am switching from Sessions to Cookies on my site, and I was wondering why i am getting this error:
Warning: Cannot modify header information - headers already sent by (output started at C:\Program Files\xampp\htdocs\black_site\layout\top.php:8) in C:\Program Files\xampp\htdocs\black_site\login.php on line 16

Warning: Cannot modify header information - headers already sent by (output started at C:\Program Files\xampp\htdocs\black_site\layout\top.php:8) in C:\Program Files\xampp\htdocs\black_site\login.php on line 17

Warning: Cannot modify header information - headers already sent by (output started at C:\Program Files\xampp\htdocs\black_site\layout\top.php:8) in C:\Program Files\xampp\htdocs\black_site\login.php on line 18

Warning: Cannot modify header information - headers already sent by (output started at C:\Program Files\xampp\htdocs\black_site\layout\top.php:8) in C:\Program Files\xampp\htdocs\black_site\login.php on line 19

Here is my new code:
Code: [Select]
<? include $_SERVER['DOCUMENT_ROOT']."/black_site/layout/top.php"; ?>
<?
include "layout/conb.php";
$username = $_POST['username'];
$password = $_POST['password'];
$query = sprintf("SELECT `username`, `password`, `email`, `class` FROM `users` WHERE `username`='$username' AND `password`='$password'");
$result = mysql_query($query);
while ($row = mysql_fetch_assoc($result)) {
if(mysql_num_rows($result)==0) {
print "Incorrect User/Pass";
} else if(mysql_num_rows($result)==1) {
$username = $row['username'];
$password = $row['password'];
$email = $row['email'];
$class = $row['class'];
setcookie("user", "$username", time()+3600);
setcookie("pass", "$password", time()+3600);
setcookie("email", "$email", time()+3600);
setcookie("class", "$class", time()+3600);
print "I hope this Works!";
}
 }
 ?>
 <? include $_SERVER['DOCUMENT_ROOT']."/black_site/layout/bottum.php"; ?>

29
Discussion / Visual C++
« on: May 20, 2007, 02:01:47 pm »
I fell kind of stupid for asking this, but how do you compile in Visual C++ Express Edition?

30
Coding / Another PHP Problem
« on: May 15, 2007, 01:05:49 am »
I am building a members db, and when i try to add a user, it doesn't insert it into the db:
Code: [Select]
<? include $_SERVER['DOCUMENT_ROOT']."/black_site/layout /top.php"; ?>
<?
$nr = $_GET['nr'];
if($nr=='') {
?>
<form action="/black_site/register.php?nr=0" method="post">
Username: <input type="text" name="user"><br />
Password: <input type="password" name="pass"><br />
Email: <input type="text" name="email"><br />
<input type="submit" value="Go!">
</form>
<?
} else if($nr=='0') {
$user = $_POST['user'];
$pass = $_POST['pass'];
$email = $_POST['email'];
$result = mysql_query("SELECT (username) FROM users WHERE username='$user'");
if(mysql_num_rows($result)==1) {
print "Username is Taken";
} else {
mysql_query("INSERT INTO `users` (`username`,`password`,`email`,`class`) VALUES ('$user','$pass','$email','member')");
mysql_query("INSET INTO `user_pro` (`name`,`msn`,`yaim`,`icq`,`site`,`site_link`
,`date_born`,`age`,`class`,`position`) VALUES ('$user','N/A','N/A','N/A','N/A','N/A','N/A',
'N/A','Member','N/A')");
print "You Have Been Registered";
}
}
?>
<? include $_SERVER['DOCUMENT_ROOT']."/black_site/layout /bottum.php"; ?>

31
Coding / Viewing Profile in PHP
« on: May 14, 2007, 01:05:04 am »
I get this error: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\Program Files\xampp\htdocs\black_site\profile.php on line 5

whenever i use this script:
Code: [Select]
<? include $_SERVER['DOCUMENT_ROOT']."/black_site/layout/top.php"; ?>
<?
$user = $_GET['username'];
$query = mysql_query("SELECT `id`, `username`, `email`, `class`, `msn`, `icq`, `yaim`, `site`, `site_name`, `age`, `date_born`, `interests`, `ocupation`, `postition` FROM user_pro WHERE username='$user");
while ($row = mysql_fetch_array($query)) {
?>
<table border="1" width="500">
<tr>
<td width="250">
MSN: <? print $msn; ?>
</td>
<td width="250">
ICQ: <? print $icq; ?>
</td>
</tr>
<tr>
<td width="250">
Yahoo IM: <? print $row['yaim']; ?>
</td>
<td width="250">
Website: <a href="<? print $row['site']; ?>"><? print $row['site_name']; ?></a>
</td>
</tr>
<tr>
<td width="250">
Age: <? print $row['age']; ?>
</td>
<td width="250">
Date of Birth: <? print $row['dob']; ?>
</td>
</tr>
<tr>
<td width="250">
Ocupation: <? print $row['ocupation']; ?>
</td>
<td width="250">
Interests:<br />
<? print $row['interests']; ?>
</td>
</tr>
</table>
<?
}
include $_SERVER['DOCUMENT_ROOT']."/black_site/layout/bottum.php"; ?>
does anyone know whats wrong?

32
Coding / PHP: Displaying From a DB
« on: March 15, 2007, 07:55:18 pm »
I am working on a private messaging system for my new site, but for some reason, i get an error when i try to make an inbox:
Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /home/zelda38/public_html/mw383/Private/index.php on line 6

here's my pm SQL query:

CREATE TABLE `private_m` (
`id` INT( 11 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`name` TEXT NOT NULL ,
`from` TEXT NOT NULL ,
`title` TEXT NOT NULL ,
`message` TEXT NOT NULL
) ENGINE = MYISAM ;


here's the inbox script:
Code: [Select]
<? include $_SERVER['DOCUMENT_ROOT']."/includes/layout.top.php"; ?>
<ol>
<?
$query = sprintf("SELECT id, name, from, title, message FROM private_m ORDER BY `id` DESC WHERE name='$memusername'" );
$result = mysql_query($query);
while ($row = mysql_fetch_assoc($result)) {
?>
<li><a href="pmView.php?id=<? print $row['id']; ?>"><? print $row['title']; ?></a> from: <? print $row['from']; ?></li>
<?
}
?>
<? include $_SERVER['DOCUMENT_ROOT']."/includes/layout.bottom.php"; ?>

33
Discussion / GM7 Key
« on: March 07, 2007, 12:57:19 am »
If i have GM6 is it possible for me to transfer that key to GM7?

34
Discussion / DBrowser
« on: February 04, 2007, 02:32:16 pm »
    This is another project I am working on, it is open source, I began working on this after learning GUI design in C# and now I am working on the coding process, I hope that it will be finished by  the beginning of April.

Things to Work on:
Tabs
Displaying Titles
Web Search
Setting Home Page

This is what the GUI should look like
http://img329.imageshack.us/img329/8914/dbrowseiv8.png

35
Discussion / PHPpad
« on: January 24, 2007, 07:05:04 pm »
  Yes another program from the guy who brought you HTMLpad. PHPpad! It will support HTML, PHP, JS, XML, and CSS, but it will focus mostly on PHP. I plan on having a free version and a commercial version, the commercial will have all of the above plus more and cost around $30, right now I am drawing out designs for it and such.

36
Discussion / Allegro
« on: January 22, 2007, 10:00:53 pm »
does anyone know of any C++ allegro tutorials (please don't say google already checked)

37
Discussion / Super Mario Mobile Mock Up
« on: January 14, 2007, 03:36:52 pm »
Well, i've been learning java for mobile devices and i'm picking it up pretty quickly.  So i have been thinking, would you like to see a remake of the original mario for cell phones? It would use SMB3 sprites, and have at least 2 extra levels. I have already made a title screen

Here's a mockup of what the style will look like, the hud will be different.

38
Discussion / Java for Mobile
« on: January 12, 2007, 01:23:03 pm »
Can anyone link me to a free java mobile compiler?

39
Coding / Imported System.dll Into C#
« on: January 12, 2007, 03:30:40 am »
In Helios tutorial for making a compiler, it says make sure System.dll is imported into the file, how do I do that?

40
Graphics / My Link
« on: January 11, 2007, 02:02:22 pm »
I know that it s not very good, but please criticize and give me comments so that I can fix all my mistakes

Pages: 1 [2] 3 4

Contact Us | Legal | Advertise Here
2013 © ZFGC, All Rights Reserved



Page created in 0.052 seconds with 33 queries.