
iGuest
Members-
Content Count
72,093 -
Joined
-
Last visited
-
Days Won
5
Everything posted by iGuest
-
Dear All we are starting a new company in IT please suggest the name with Sunthanks provide the name in islamsabiha11@yahoo.com
-
How To Bypass/unblock Websites At Work And At School!
iGuest replied to deadmad7's topic in General Discussion
Sorry friend but in my case https:// method is not working and proxy sites are very slow. So finally I am using a VPN software(Hotspot Shield), it is fast, reliable and bypass all restrictions. One more thing you can try to access blocked content via IP address of the blocked website as sometimes network admin blocks only the website name not IP(Hope it works). If you want to download VPN then you should visit >> http://forums.xisto.com/no_longer_exists/ -
A New Domain Name For Knowledgesutra
iGuest replied to iGuest's topic in Alerts, News & Announcements
The change would be coming very soon and like always, everyone would be notified. -
Batch .bat Files not sure which subforum this would go in
iGuest replied to AlternativeNick's topic in Programming
You can make batch games by using simple if statements. For example, try copying this into a batch file for a basic text game: @echo offtitle Interactive Story// This makes the commands themselves invisible, and titles the command prompt "Interactive Story".:menucolor f0// This sets the colors of the command prompt.cls// This clears the command prompt of all messages.echo Welcome to Interactive Story!echo For each section, write your choice, then press enter.echo Please write your choice in lowercase.echo Beware, making the wrong choice will kill you.echo Have fun!pausegoto start// This sends the command interpreter to a different line of code.:start// This is the title of the line of code.color f0clsecho You find yourself in a strange room.echo There is a green door and a red door.echo Which door do you go through? (Only write the color.)set /p choice=Choice:// This is creating a variable.if %choice%==green goto right1if %choice%==red goto death1// These are if statements. They are basically saying "if (condition) (some command)".echo Invalid choice, please try again.// If you type in something that is not "green" or "red" the of code will repeat itself.pausegoto start:death1// Getting to this line of code means you lost.color f4clsecho You open the red door, and come face to face with the last thing you see...echo fire.echo THE ENDpausegoto menu:right1// Getting to this line of code means got it right.color f2clsecho You open the green door and you are in a hallway.echo Which way do you go, left or right?set /p choice=Choice:if %choice%==left goto death2if %choice%==right goto right2echo Invalid choice, please try again.pausegoto right1:death2color f4clsecho You run to the left.echo All of a sudden, the sound of cracking pierces your ears.echo A crack opens in the floor... and you fall to your death.echo THE ENDpausegoto menu:right2color f2clsecho You run to the right and into a new room.echo All of a sudden, an alien soldier appears in front of you,echo armed with plasma launchers.echo Do you fight or flee?set /p choice=Choice:if %choice%==fight goto right3if %choice%==flee goto death3echo Invalid choice, please try again.pausegoto right2:death3color f4clsecho You run away from the alien.echo All of a sudden, you are surroundedecho by dozens of alien soldiers.echo And there is no surrendering in this game!echo THE ENDpausegoto menu:right3color f2clsecho You kick the alien in the chest and take its plasma launcher.echo You shoot the alien and run, but other aliensecho are among you.echo However, they are afraid of you, and flee from the room.echo The weapon you are holding looks dangerous.echo Should you keep it or drop it? (Write "keep" or "drop")set /p choice=Choice:if %choice%==keep goto death4if %choice%==drop goto right4echo Invalid choice, please try again.pausegoto right3:death4color f4clsecho You decide to keep the weapon.echo It is far too awesome to be dropped.echo However, you are not quite sure how all the functions work,echo so you decide to fiddle around with it.echo You find a big red button on the gun and press it.echo It self destructs and so do you.echo THE ENDpausegoto menu:right4color f2clsecho You decide to drop it.echo It is far too dangerous to be kept.echo You hide it in a closet and run out of the room.echo You face two new doors: a blue one and an orange one.echo Which one should you go through? (Only write the color.)set /p choice=Choice:if %choice%==blue goto right5if %choice%==orange goto death5echo Invalid choice, please try again.pausegoto right4:death5color f4clsecho You open the orange door and walk in.echo The sound of slithering makes you stop in your tracks.echo You look down and find out that the floorecho is made of poisonous snakes!echo You feel a sharp pain in your ankle and drop dead.echo THE ENDpausegoto menu:right5color f2clsecho You open the blue door and walk in.echo You are in a flooded room.echo You see another door and a skylight.echo Should you exit through the door or the skylight?set /p choice=Choice:if %choice%==door goto death6if %choice%==skylight goto right6echo Invalid choice, please try again.pausegoto right5:death6color f4clsecho You open the door and enter.echo Slam! You turn around and it is closed.echo You try opening it but it is locked.echo There are no other doors.echo Looks like you're going to be in hereecho for a long time...echo THE ENDpausegoto menu:right6color f2clsecho You decide to exit through the skylight.echo You spot a ladder and climb it.echo You open the skylight and above you is the sky!echo You are free!echo Or are you?echo Above you, you see the alien ship leaving.echo All of a sudden, you are being pulled into the ship.echo You are inside the ship.echo You see an airlock.echo Perfect! Your way out!echo Should you exit or stay?set /p choice=Choice:if %choice%==exit goto death7if %choice%==stay goto right7echo Invalid choice, please try again.pausegoto right6:death7color f4clsecho You decide to get out of the ship.echo After all, there are evil aliens here.echo You open the airlock.echo Miles off the ground, you fall towards the Earth.echo Gravity is a devil!echo THE ENDpausegoto menu:right7color f2clsecho You decide to stay in the ship.echo Who knows where that airlock leads to?echo You decide to explore the ship.echo All of a sudden, you realize that you're hungry.echo You find some mushroom things that look like food.echo Should you eat them or explore the ship?echo (Write "eat" or "explore")set /p choice=Choice:if %choice%==eat goto death8if %choice%==explore goto right8echo Invalid choice, please try again.pausegoto right7:death8color f4clsecho You pick them up and eat them.echo They taste horrible!echo Like a mix between cow manure and rotten eggs.echo Suddenly, you feel a pain in your stomach.echo You fall to the ground.echo Next time, be careful with what you eat!echo THE ENDpausegoto menu:right8color f2clsecho Those mushrooms are probably poisonous.echo You want to explore the ship.echo You hide when you see a group of aliensecho coming your way.echo When the coast is clear, you run into another room.echo You are in the main control room.echo You can defeat these aliens by crashing the ship!echo Should you crash the ship? (Write "yes" or "no")set /p choice=Choice:if %choice%==yes goto right9if %choice%==no goto death9echo Invalid choice, please try again.pausegoto right8:death9color f4clsecho You decide not to crash the ship.echo You can get yourself killed.echo The sound of footsteps makes you turn around.echo The aliens are coming your way!echo You have nowhere to hide.echo They come in and capture you due to a reportecho on a human in the control room.echo Looks like you've just become a slave...echo THE ENDpausegoto menu:right9color f2clsecho You decide you want some action.echo You look at all of the buttons.echo You don't know what they do.echo Then, you notice an antimatter bomb is storedecho in the compartment.echo You set it off.echo You have one minute to exit the ship.echo You hide when you hear the sound of footsteps.echo You go back to the airlock.echo You open it, and you are looking into the thermosphere.echo Should you jump? (Write "yes" or "no")set /p choice=Choice:if %choice%==yes goto right10if %choice%==no goto death10echo Invalid choice, please try again.pausegoto right9:death10color f4clsecho You don't want to fall to your death,echo so you stay in the ship.echo All of a sudden, you hear a cracking rippling sound.echo The antimatter bomb must have gone off.echo The ship dissolves in a flash of light, and nothing is left of you.echo THE ENDpausegoto menu:right10// Getting to this line of code means you won.color f2clsecho You close your eyes and jump.echo Above you, the ship explodes,echo sending ripples across spacetime.echo The air around you becomes liquid,echo and you cease to fall.echo The very matter around you is being ripped apart.echo You are in a vacuum. When the air comes back,echo you are on the ground.echo Good job! You defeated the aliens!echo You are the celebrated hero of Earth.echo THE ENDecho Play again?set /p choice=Choice:if %choice%==yes goto yesif %choice%==no goto noecho Invalid choice, please try again.pausegoto right10:yesclsgoto menu// The batch file will run again.:noclsexit// The command prompt will close. -
"Hi, You could visit this site http://www.ownemaildomain.net/ for the best information that you'll need regarding creating your own e-mail domain. The site has step by step instructions and the site creator shares his lessons learned from his over seven years of having his own email domain. Best of luck."
-
I tried to do business with Sousa James, james.sousa@mordigital.com, but they do not honor their agreements. I advise everybody not to engage in business with Web Marketing Ltd t/a More Digital, Bridge House, London Bridge, London SE1 9QR, United Kingdom, as this company and its people make you to put their ad on your site, but refuse to honor their obligations.
-
Hello everyone, The forum to which all of you contribute in a valuable manner,Xisto, has undergone a change in terms of the domain name.The name has been changed to "KDiscuss" ,the "K" is basically the shortened form of the word "Knowledge",and as all of us are here to mainly discuss about various topics, the word "Discuss" has been included, in place of "Sutra", so that our impact gets more global and we are able to reach people faster.However, except the English version of the name, there are no other major changes that have been made. Let us know how the new domain name for the forum appeals to you.
-
I have a gateway computer, it has all the F1-12 keys set to a certain function on the computer. I downloaded a game and to play it uses the F keys. When i try to use them it does nothing on the game but it does the task its ment to on the computer. I am wondering is there a way to disable the function keys while i play the game. But not turn them off forever. I still need the keys for when im not playing the game.Any informaton would be helpful. Thank you
-
How Can I Lock My Winxp By Using Ctrl+alt+del
iGuest replied to jedipi's topic in Websites and Web Designing
need help! how to convert in code vb6 windowslogo +L Plssssssssssssss send me your codes ! thenks -
cause you cant stop what im startin, what i throw down you cant pick up, until it flows like the thunder in the air, your sound wouldn't scare me even if god dared me.
-
Hey, my name is mike, Im starting a clan called spectres, just put ^1[spectres] before your name all caps, we dont specialize, we kick butt and take names
-
If you have a question that needs to be answered, then you should post your query in the "Questions and Answers" section, I am moving this topic to that section.
-
It's interesting that so many people consider this a gray area because I'd noticed that I've been able to read in dreams long ago. My most recent example of this is kind of confusing.I was handed (by a "ghost") a box of letters, all of them congratulating me. For what was unspecified, but on the cover of every envelope was "Congratulations!"Not long after, the girl gave me a book, flipped open to a certain page. I've never heard of this kind of book existing before but it was a book of English Dialects, explaining the different accents of different kinds of english; the particular page went through names like "Daddy, Daddeh, Daday..." And Mother as well. While I was reading it, I could hear a man with a THICK Scottish accent saying things completely unrelated.Strange dreams are strange... I have lucid dreamed before, but never with so much detail.
-
What Was Your Worst Heartbreak [true] Story?
iGuest replied to saitunes's topic in Dating And Relationships
worse heartbreak was not realizing that i left the one i.love for the one.i like. i was too scaredd to love and let her in my heart and when i finally realize how inlove i was itt was too late. she found someobe and dated that person for a while then we decided to try it again and thaths when i met the one i only.liked i messt up big time i got engaged bit not a day goes by that i regret this decision the one i love was my whole world she made me smile. when i was with.her my life was full of joy laughter i did anything for her i fell deep for her and now that i want her back i tryed my best to get her and she dosnt talk to me i just found out shes engaged and wow that broke my heart into pices shes marring the wrong person we both love eachother i know it but life is to complicated now all i have to do is let my angel fly off. i love.u bby hope everything goes great honey bee and im sorry. never leave the one u love for the obe u like and never give up on the one u love bc then youll be sitting crying listening to love songs. p. -
Well I am trying to setup vsp for cod2 but no luck.When I tray to parse log file I have this error: max_execution_time is 0[command-line options]: Array( [parser-options] => Array ( [savestate] => 1 ) [prompt] => 1 [log-gamecode] => cod [log-gametype] => [logfile] => ftp://cod2bih.info/counter/ftplogs/gamelog.log [config] => pub/configs/cfg-default.php)Attempting to connect to FTP server cod2bih.info:...- Connection/Login successful.- FTP passive mode enabled- Preparing to download the remote file "/counter/ftplogs/gamelog.log"- Attempting to download "/counter/ftplogs/gamelog.log" from FTP server to "./ftplogs/gamelog.log"...Remote file is the same size as Local file. Skipped Download../ftplogs/gamelog.logError: The variable $cfg['game']['name'] is not set properly in config file.Edit your config file (pub/configs/cfg-default.php)Read the comments beside that variable and set that variable properly.But the variable game name is set to "cod",so what am I doing wrong? Here is my default cfg setup: <?php//==============================================================================// Anything following double slashes // are comments.// You can use // to disable certain settings.// Remove the // infront of a variable if you want to enable it.//==============================================================================global $cfg;//================================================// PHP configurations error_reporting(E_ALL ^ E_NOTICE ^ (defined('E_DEPRECATED') ? E_DEPRECATED : 0)); // For Debugging. Recommended when you set up vsp for the first time. //error_reporting(E_ALL ^ E_NOTICE ^ (defined('E_DEPRECATED') ? E_DEPRECATED : 0) ^ E_WARNING); // Recommended for regular use after ensuring proper run of vsp. //error_reporting(E_ALL ^ (defined('E_DEPRECATED') ? E_DEPRECATED : 0)); // For Debugging. Enable this if you are having a hard time to get vsp going. ini_set("default_charset", "UTF-8"); // default charset setlocale(LC_NUMERIC, 'C'); // numeric locale (dont set a locale that uses commas for separating float numbers) //================================================// Database settings //$cfg['db']['adodb_path']= "C:/php/lib/adodb/"; // Uncomment/Enable this only if you have and want to use your own adodb libraries. // Must specify it as an absolute path! ie:- "../../adodb" etc. are *NOT ALLOWED* $cfg['db']['adodb_driver']= 'mysql'; $cfg['db']['table_prefix'] = "vsp_"; // use only lower case to minimize windows/linux portability problems $cfg['db']['hostname'] = "localhost"; $cfg['db']['dbname'] = "xxxxxx"; // use only lower case to minimize windows/linux portability problems $cfg['db']['username'] = "xxxxxx"; $cfg['db']['password'] = "xxxxxx";//================================================// Ip2Country table $cfg['ip2country']['source'] = 'ip-to-country.csv'; // cvs source file from which the ip2country table gets populated, // file will be searched in sql directory or as an absolute path // when it's absent $cfg['ip2country']['countries_only'] = 1; // if enabled(1) the ip2country table will only load the information // of countries and nothing more // enable when the country code information is already contained // in the log file (as with xp log files) to optimize space and // lookup speed $cfg['ip2country']['columns']['ip_from'] = 0; // column that holds the ip from field (0-indexed) $cfg['ip2country']['columns']['ip_to'] = 1; // column that holds the ip to field (0-indexed) $cfg['ip2country']['columns']['country_code2'] = 2; // column that holds the country code (0-indexed) $cfg['ip2country']['columns']['country_name'] = 4; // column that holds de country name (0-indexed)//================================================// Game settings $cfg['game']['name']='cod'; /*** make sure this is set correctly! Read below! ***/ /*---------------------------------------- In order to find out what values are acceptable for this variable, look in the /pub/games/ folder in vsp. Any sub directory in this folder is valid. ex:- 'cod' for Call of Duty and all its expansions/mods 'hl' for Half Life and all its mods 'moh' for Medal of Honor and all its expansions/mods 'q3a' for Quake 3 Arena and all its expansions/mods 'rtcw' for Return to Castle Wolfenstein and all its mods 'sof2' for Soldier of Fortune 2 'wet' for Wolfenstein Enemy Territory and all its mods 'default' for games that are not listed in pub/games/ etc. ----------------------------------------*/// Themes *may* use the following variables to do special processing for a particular game,mod,type $cfg['game']['mod']='xp'; // not used currently $cfg['game']['type']='default'; // not used currently// The theme author decides how to use these variables.// Check the documentation for the theme that you are using//================================================// Remote downloading of logs $cfg['ftp']['logs_path']= "./ftplogs/"; // Files downloaded from ftp server will go into this directory on local server. $cfg['ftp']['username'] = "xxxxxxx"; $cfg['ftp']['password'] = "xxxxxxx"; $cfg['ftp']['pasv'] = 1; // Enable(1)/Disable(0) Passive mode. Some FTP servers may require this to be ON $cfg['ftp']['overwrite'] = 0; // Enable(1)/Disable(0) overwriting of file(s). A value of 0 resumes the log.//================================================// Parser Options $cfg['parser']['use_original_playerID'] = 1; // Check http://forums.xisto.com/no_longer_exists/ $cfg['parser']['use_most_used_playerName'] = 1; // use the most used playerName (set to 1) OR newest playerName (set to 0) as primary playerName $cfg['parser']['use_most_used_playerIP'] = 1; // use the most used playerIP (set to 1) OR newest playerIP (set to 0) as primary playerIP $cfg['parser']['check_unique_gameID'] = 1; // check uniqueness of game start date // disable if log doesn't have server date information // You can track players by guid and ip if the game/mod supports it. // Tracking by guid is always the best option if its available. If it doesn't work track by playername //----- ***USE ONLY ONE OF THESE AT A TIME*** ----- //$cfg['parser']['trackID'] = 'playerName'; // Default method for tracking, works with all games/mods. If unsure, use this. //$cfg['parser']['trackID'] = 'ip=/(\d+\\.\d+\\.\d+\\.\d+)/'; // Track by ip AAA.BBB.CCC.DDD (NOT RECOMMENDED - the full ip of the player will be viewable by anyone) //$cfg['parser']['trackID'] = 'ip=/(\d+\\.\d+\\.\d+\\.)/U'; // Track by ip AAA.BBB.CCC.* (recommended tracking format for ips) //$cfg['parser']['trackID'] = 'ip=/(\d+\\.\d+\\.\d)/U'; // Track by ip AAA.BBB.C*.* //$cfg['parser']['trackID'] = 'ip=/(\d+\\.)/U'; // Track by ip AAA.*.*.* $cfg['parser']['trackID'] = 'playerName'; // Recommended method of tracking, if available for that game/mod //----- ***USE ONLY ONE OF THESE AT A TIME*** -----//================================================// Other settings $cfg['awardset']='default'; $cfg['skillset']='default'; $cfg['roleset']='default'; $cfg['iconset']='default'; $cfg['mapset']='default'; $cfg['weaponset']='default'; $cfg['player_ban_list']='default'; $cfg['player_exclude_list']='default'; $cfg['games_limit'] = 1000; // limit of detailed game stats that will be stored // on the database//================================================// Display settings $cfg['display']['record_limit']=50; $cfg['display']['days_inactivity']=30; // number of days after which players are excluded // for rank and awards (0 means never)//================================================// Server info $cfg['display']['server_title']='HERE GOES YOUR SERVER TITLE'; $cfg['display']['server_image']="../../images/server.gif"; $cfg['display']['server_info']=<<<END_OF_SERVER_INFO <table style="border-width: 10;"> <TR> <TD style="border-width: 0; text-align: right">Server:</TD> <TD style="border-width: 0; text-align: left" ><font color="LimeGreen">Your Server Name and IP goes here</font></TD> </TR> <TR> <TD style="border-width: 0; text-align: right">Game:</TD> <TD style="border-width: 0; text-align: left" >Your Game and Mod type goes here</TD> </TR> <TR> <TD style="border-width: 0; text-align: right">Admins:</TD> <TD style="border-width: 0; text-align: left" ><b><font color="DarkGoldenrod">List your admin(s) here</font></b></TD> </TR> <TR> <TD style="border-width: 0; text-align: right">E-Mail/MSN:</TD> <TD style="border-width: 0; text-align: left" >List your E-Mail and/or IM account here</TD> </TR> <TR> <TD style="border-width: 0; text-align: right">Web Site:</TD> <TD style="border-width: 0; text-align: left" ><a href="http://My.web_site_goes_here.com" target="_blank">My web site name goes here</a></TD> </TR> <TR> <TD style="border-width: 0; text-align: right">Quote:</TD> <TD style="border-width: 0; text-align: left" ><b>My quote goes here</b></TD> </TR> </table>END_OF_SERVER_INFO;//================================================// Data Filters// format :- $cfg['data_filter']['events']['eventCategory'] = REGEXP// $cfg['data_filter']['events']['eventCategory'] = "/^R/"; means exclude the events in the category eventCategory where eventName begins with R// $cfg['data_filter']['events'][''] = "/.*/"; means exclude all events in category eventCategory where eventName matches anything $cfg['data_filter']['events']['weapon']="/.*/"; // excluded all weapon events $cfg['data_filter']['events']['ammo']="/.*/"; // excluded all ammo events //$cfg['data_filter']['events']['items']="/.*/"; // uncomment this line to exclude all item pickup events (mainly health, armor and powerups) $cfg['data_filter']['events']['']="/^(team_CTF_blueflag|team_CTF_redflag|team_CTF_neutralflag)/"; // innacurate //$cfg['data_filter']['gamedata']['']="/^(sv_|g_|p_)/"; $cfg['data_filter']['gamedata']['']="/.*/";//================================================//==============================================================================?>
-
If you haven't checked back on this in a while, google the term 'dokutrophobia'... it looks like you successfully named a new phobia, people are using it all over!
-
Welcome aboard Johny, I am sure you will like it here, for there are discussions going on on various topics, including the ones that interest you.To know more about the forum and the way it works, visit the "Alerts and Notices" section.
-
Dear All,I am looking for a name for my company to start for.We are into healthcare & pharma recruitments & staffing.We also have a portal for the same.Kindly suggest for the same.With regards,Raghav
-
Photoshop Tutorial: Forum Signatures
iGuest replied to Dream1405241490's topic in Graphics, Design & Animation
this is what came up with... what do you think (how exactly do you do the transparent background?) -
If you have any doubts regarding an issue, please post them in the "Questions and Answers" section, as soon as your issue is solved, it will be moved to the appropriate section.
-
Sadkins, you have posted a similar topic in another section of the forum, you need to wait for someone to answer your question and then it will be moved to a suitable section, for now I am closing this topic.
-
Hello Chris, Welcome to Xisto, I am sure you will enjoy your stay here.You seem to be quite a techie, hope the people you befriend here help you with solutions to your problems or if you simply wish to discuss something, pour your heart out and you will find the discussion growing interesting with every new post.For all the rules regarding the functioning of the forum, you can visit the ALERTS AND NOTICES section.
-
i think you can use 3ds maxi don't know more info about it but i hope google can help you