Jump to content

Ctrl + V


EvilPuncker

Recommended Posts


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  713
  • Reputation:   70
  • Joined:  11/08/11
  • Last Seen:  

Tell us the last thing you copied! following forum rules ofc.

mine:

^000000
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  32
  • Topics Per Day:  0.01
  • Content Count:  386
  • Reputation:   28
  • Joined:  01/16/12
  • Last Seen:  

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2345
  • Joined:  10/28/11
  • Last Seen:  


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  53
  • Reputation:   18
  • Joined:  11/19/11
  • Last Seen:  

u never see a postman celebrating after he just delivered a letter

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  117
  • Reputation:   18
  • Joined:  01/06/12
  • Last Seen:  

<cfset inta=0>

Link to comment
Share on other sites

  • 2 weeks later...
  • 2 weeks later...

  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  414
  • Reputation:   102
  • Joined:  11/13/11
  • Last Seen:  

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  713
  • Reputation:   70
  • Joined:  11/08/11
  • Last Seen:  

memset(md->lootitem, 0, sizeof(*md->lootitem));

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

1961

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  104
  • Reputation:   30
  • Joined:  11/11/11
  • Last Seen:  

LogFuncEnd

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  713
  • Reputation:   70
  • Joined:  11/08/11
  • Last Seen:  

./configure --with-mysql=/mysql32/bin/mysql_config

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  117
  • Reputation:   18
  • Joined:  01/06/12
  • Last Seen:  

2743

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  754
  • Reputation:   186
  • Joined:  05/22/12
  • Last Seen:  

0x2afd

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  225
  • Reputation:   39
  • Joined:  01/20/12
  • Last Seen:  

	 $item->equip_jobs_dropdown = build_equip_job_dropdown( array(
				 'id' => 'item-equip_jobs',
				 'class' => 'combobox dk poshy-tooltip-left',
				 'bitmask' => $item->equip_jobs,
				 'multiple' => 'multiple',
				 'size' => '5',
				 'others' => ' title="Which jobs this item is available for. Values below can be combined to achieve availability for multiple job classes.<span>Tip:</span> Hold CTRL on your keyboard while selecting/deselecting an option." style="height:80px;"',
				 )
	 );

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  592
  • Reputation:   31
  • Joined:  11/14/11
  • Last Seen:  

www.r_dt_be.com

WTF!!!

- ouch need to edit it .. its againts the rules..

Edited by GM Takumirai
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  117
  • Reputation:   18
  • Joined:  01/06/12
  • Last Seen:  

^Wow lol

job_gxq>1 && job_gxq<99

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  82
  • Reputation:   11
  • Joined:  01/01/12
  • Last Seen:  

Couldn't figure out how to rename files on codeblocks so I made a new cpp file and copied and pasted my noob ass calculator ive bee making.

#include <iostream>
#include <string>
#include <limits>

using namespace std;

int main(){

       /*Setting up the 3 main variables*/

       int calc, num1, num2;

       /*In forming the user to input the first number.*/

       cout << endl << "\nPlease enter the first number: ";

       /*Setting the variable 'num1' to the number the user input.
         and checking to make sure the user input is a whole number.*/

       while (!(cin >> num1)){
           cin.clear();
           cin.ignore(numeric_limits<streamsize>::max(),'\n');
           cout << endl << "Please input a proper 'whole' number!: " << "\n\nPlease enter the first number: ";}

       cout << endl << "\nPlease enter the second number: ";

       /*Setting the variable 'num2' to the number the user input.
         and checking to make sure the user input is a whole number.*/

       while (!(cin >> num2)){
           cin.clear();
           cin.ignore(numeric_limits<streamsize>::max(),'\n');
           cout << endl << "Please input a proper 'whole' number!: " << "\n\nPlease enter the second number: ";}

       /*A little 'menu' like output informing users of what number for each operation.*/

       cout << "\n1: Add\n2: Subtract\n3: Multiply\n4: Divide\n\n" << "Option: ";

       /*Setting the variable 'calc' to the number the user input,so the calculator knows what operation to use.
         and checking to make sure the user input is a whole number.*/

       while (!(cin >> calc)){
           cin.clear();
           cin.ignore(numeric_limits<streamsize>::max(),'\n');
           cout << endl << "Please input 1-4: " << "\n\nOption: ";}

       /*Checking what operation was chosen and doing the math.*/

       if(calc == 1){
           cout << endl << num1 << "+" << num2 << "= " << num1 + num2;}

       if(calc == 2){
           cout << endl << num1 << "-" << num2 << "= " << num1 - num2;}

       if(calc == 3){
           cout << endl << num1 << "x" << num2 << "= " << num1 * num2;}

       if(calc == 4){
           cout << endl << num1 << "/" << num2 << "= " << num1 / num2;}

   return(0);
}

Just started learning C++ about 7-8 hours ago.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  713
  • Reputation:   70
  • Joined:  11/08/11
  • Last Seen:  

close;

// keep going

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  53
  • Topics Per Day:  0.01
  • Content Count:  291
  • Reputation:   4
  • Joined:  04/24/12
  • Last Seen:  

me is this one:

actually mine is printscreen.. just now.. ^^

post-4153-0-74223500-1344504299_thumb.png

Edited by v00m3r
Link to comment
Share on other sites

  • 2 months later...

  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.00
  • Content Count:  1479
  • Reputation:   172
  • Joined:  12/14/11
  • Last Seen:  

solved? add a [solved] in front of your thread's title and put a "solved" inside the tag box.

honestly, it's the last of my clipboard. keep continue~

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...