blog

Aritcle

digg 0

Szaryx news#1

Category: Default Game: Default Posted on Nov 04, 2009 2:08 am


 

Today in Szaryx news:

  • ·       Tibia review
  • ·       Basic of C language


 

 

 

 

Tibia

 

 

 Tibia is 2D Free MMORPG (premium account offer more abilities) in medieval fantasy reality.  It’s made by Cipsoft.

There are 4 vocations:

    ·       Knight (with promotion Elite Knight) – He gains 15 Hp and 5 Mp every level. He fight in close combat.

    ·       Paladin (with promotion Royal Paladin) – He gains 10 Hp and 15 Mp every level. He is distance fighter and he can control holy magic.

  ·       Druid (with promotion Elder Druid) – He is defensive mage. He gains 30 Mp and 5 Hp every level. He is master of healing, earth and ice magic.

    ·       Sorcerer (with promotion Master Sorcerer) - He is offensive mage. He gains 30 Mp and 5 Hp every level. He is master of fire and energy magic.

PVM

 

PvM in Tibia requires fast reflex, good internet and some skills as you can sometimes avoid enemy attacks.

PVP

PvP in Tibia requires same things as PvM, but you need also good team. There are 3 types of servers:

·         No-PvP(In next week it will be Optional PvP)-You can’t attack other player on this type of server(In next week you will be able to attack other player when he accept it)

·         PvP(In next week it will be Open PvP)- You can attack other player, but if they don’t accept it, then you can have bad consequences(After reaching killing limit you will get red skull and everytime you die you will lose all your items; If you double limit then you will get black skull which make you lose all your items + people attack you with double damage.)

·         PvP-Enforced(In next week it will be Hardcore PvP)- You can attack and kill everybody without consequences. If enemy is higher level than you then you get some of his experience.(In next week you won’t gain experience for killing others.)

Death Penalty

·       When you die in Tibia. You lose some of your experience,skills and items. If you don’t want to lose a lot then you can buy blessings which reduce experience and skills loss and make you 100% sure that you won’t lose any item.

Download

·       You can download this game from www.tibia.com .

Help

·       If you need help with anything feel free to pm me on forum.


 

 

C

Here you will be able to learn some basics of c and c++ languages.

First you need to download Dev C++(It’s freeware). You can easy find it in internet or download from here.

Let’s start with easy program to say Hello World.

#include <stdio.h>                                           -  This command  let you use commands from library stdio.h (you can find more info                                                                                    about libraries here.

int main()                                                             - This command start main function.

{                                                                               - This command shows where this function start.

printf("Hello World!\n");               - Command printf(“”) shows text.  “\n” is skiping to next line.

system("PAUSE > NUL");               - Command that stop program until user push Enter

return 0;                                                - Command to end main function.

}                                                                                 - This command shows where thisfunction end.

Save this file as “C source files (*.c)”, then click on execute and compile (or just use ctrl+f9) and then execute and run (or just use ctrl+f10). You should get message Hello World!

Now something harder. Program that will read number wroted by user and then show it.

#include <stdio.h>

#include <stdlib.h>

int main()

{

    int number;                                                  - command to declare variable int type named “number”

    scanf("%d",&number);                            - command to read variable “number”,

    printf("%d is my number",number);  - command to show this variable on screen and also add text (when u just want to show                                                                              number write printf(“%d”,number);

    system("pause > nul");

    return 0;

}

Save it as before, compile and then run. Program should read number wroted by user and then show this number is my number. That’s all for today. If you have any problems with programs you can pm me and send me your version and I will check them. If I made somewhere mistake then send me pm and correct me.

 

 

comments ( 0 )