Silkroad Online Forums

A community forum for the free online game Silkroad Online. Discuss Silkroad Online, read up on guides, and build your character and skills.

Faq Search Members Chat  Register Profile Login

All times are UTC




Post new topic Reply to topic  [ 66 posts ]  Go to page Previous  1, 2, 3  Next
Author Message
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Jan 24, 2009 10:29 pm 
Senior Member
User avatar
Offline

Joined: Feb 2008
Posts: 4049
Location: Magic
willieb3 wrote:
school and not enough money to buy the software and sro i guess lol


the program hes using is free atleast i got them for free i have vb and c# not sure if c++ is free

_________________
Image


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sun Jan 25, 2009 7:21 pm 
Valued Member
User avatar
Offline

Joined: Mar 2007
Posts: 362
Location: Hungary
SkanKaZoiD wrote:
Well that was pretty dumb and pointless dont dl.


dumb for you... did you win at least ? :)


Hi Lady !
No its actually the most expensive programming development system as far as I know (Microsoft Visual Studio 2008 prof. ) . I checked it know its $699.58 . But of course there are other ways :)


willieb3!
here is a link where you can download the free versions of visual studio , so you can start learning C++ C#or visual basic : (I recommend C# as it is easy and later its easy to learn c++ which is used in the 90% of the programs, but don't start with c++! )

http://www.microsoft.com/express/download/default.aspx

it is called express version

If you choose C# , then I can also help you in learning

_________________
Jesus Christ doesn't care how bad person you are, he loves you .

Maker of the SilkroadOnline Skill Parody 1 and 2


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sun Jan 25, 2009 8:00 pm 
Senior Member
User avatar
Offline

Joined: Feb 2008
Posts: 4049
Location: Magic
Kori0129 wrote:
SkanKaZoiD wrote:
Well that was pretty dumb and pointless dont dl.


dumb for you... did you win at least ? :)


Hi Lady !
No its actually the most expensive programming development system as far as I know (Microsoft Visual Studio 2008 prof. ) . I checked it know its $699.58 . But of course there are other ways :)


willieb3!
here is a link where you can download the free versions of visual studio , so you can start learning C++ C#or visual basic : (I recommend C# as it is easy and later its easy to learn c++ which is used in the 90% of the programs, but don't start with c++! )

http://www.microsoft.com/express/download/default.aspx

it is called express version

If you choose C# , then I can also help you in learning


and if you can do c# you can get the xna studio :P lol

but ya i just got the free versions hehe

i learned vb first and i can program with both of them desantly vb actualy helps you out most of the time. in C# you have to put a ; at the end of each statement and the if statement is like
if (blablabla)
{
blablabla;
}
vb is
if blablabla then
blablabla
end if
and i could never get the keydown working in C# XD

_________________
Image


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sun Jan 25, 2009 9:45 pm 
Banned User
User avatar
Offline

Joined: Jan 2008
Posts: 136
Location:
Hera
can you give me the code? i`m learning now and that will help me alot

_________________
Image
Image
Image
Image
Image

Image


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Mon Jan 26, 2009 6:56 pm 
Valued Member
User avatar
Offline

Joined: Mar 2007
Posts: 362
Location: Hungary
BloodDust wrote:
can you give me the code? i`m learning now and that will help me alot


uhm... visual studio makes some automatic codes which looks kinda funny, and the code itself is very long. If you don't have Visual Studio then it will be very hard to see what makes what . I am also lazy to make comments for my own code and this makes later hard to fix . If you could tell me at what level are you in programming I might write you a better and smaller program :) . (don't wanna upload 5mb :banghead: )


here are a few programs , tell me whihch one is like your level :


1 ) Writeline("Hello World");

2 )

int x = 5 ;
int y = 9;
int z ;

static void Main(string[] args)
{
z = x+y;
Messagebox.Show("Calculation is done. Result is :" + Convert.ToInt32(z));
}



3)

Namespace program
{
Class Maths
{
const decimal PI = 3.14;
public int CircleArea(decimal ray)
{
int Area = Math.Power(r,2) * PI ;
return Area;

}
}
Class Program
{
static void Main(string[] args)
{
m Maths = new Maths()
System.Console.WriteLine(m.CircleArea(5)).

}
}
}


4 ) longer programs , using structs , []s (dunno english name ) . , for(int x=0, x>5,x++) and other cycles .

5) Using Windows components : Forms , Labels, PictureBoxes, so the GDI+ and so

_________________
Jesus Christ doesn't care how bad person you are, he loves you .

Maker of the SilkroadOnline Skill Parody 1 and 2


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Tue Jan 27, 2009 6:46 pm 
Banned User
User avatar
Offline

Joined: Jan 2008
Posts: 136
Location:
Hera
Kori0129 wrote:
5) Using Windows components : Forms , Labels, PictureBoxes, so the GDI+ and so

_________________
Image
Image
Image
Image
Image

Image


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Wed Jan 28, 2009 2:53 pm 
Banned User
User avatar
Offline

Joined: Aug 2007
Posts: 1108
Location:
Off Topic
Code:
public struct Damagetext
{
    public string text;
    public int locationx;
    public int locationy;
    public bool exists;
}

Don't ask me where I have it from. ;>

_________________
<< banned for proof of botting. -cin >>


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Wed Jan 28, 2009 3:25 pm 
Active Member
User avatar
Offline

Joined: May 2008
Posts: 837
Location: Nice question O,O
BloodDust wrote:
Kori0129 wrote:
5) Using Windows components : Forms , Labels, PictureBoxes, so the GDI+ and so

:?

_________________
Sword d12:
Spoiler!


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Jan 31, 2009 11:27 pm 
Frequent Member
User avatar
Offline

Joined: May 2008
Posts: 1095
Location: PORTUGAL
Kori0129 wrote:
HejsaN wrote:

And I was joking, I havent played iSRO for over 10 months now, and on ECSRO I play 4 hours max on one week.



Ecsro Ecsro... 10X xp is nothing. A lot of other things missing which decrease leveling speed a lot:
-No quest 10X .. so takes no sense to do the quest agree
-quests make grind a little funnier ... but as I said, does not worth to do You can still do them some are worth it
-no new skills also slows your level speed agree
-no stalls, or very high prices ->have to use npc gear There are a lot of stalls LOL, and the prices are high because it's easy to get money
-Alone on the hunting ground. You might say "bah no ksers" . but I speak that at least 1-2 players should be around... damn boring this way -> feels like the true Silkroadoffline Nop, NOT alone, both ecsro and fembria have a lot of players
-back to solo MMORPG...(Very boring when you just walk around for years as a thief to intercept a real convoj ) As a thief I've seen many traders
-lvl 70 skill max... stop repeating to make the list look bigger
-lagg , much more than on Isro it has lagspikes but it's not that much laggier than iSRO
-Dcs Not for me? o.0
-server inspections: sometimes for a few hours , sometimes for a few mounths... :banghead:
-also using the autopot program is a little tricky az it is working like an AutoIt program... when isro started it had no autopot and people still played


and finally the thing I most hated:
-IMPOSSIBLE TO GET IN !!! I usually put my mobile phone on the enter button, and then wait 0.1-2.5 hours till I get in :banghead: Bullshit, I do the same trick but i never wait that long

I was playing 3 hours a day ( I got net from 18:00-21:00 GMT+1 ) , but since I was playing SRO for 3 years, I thought it won't be a problem to lvlup fast.But my leveling speed wasn't faster even a bit... ( 1.day - lvl14 2. day lvl15 3.day lvl17 4. day : ????(gave up)) . Well maybe God helped to go on this way, otherwise I would be still playing ECSRO...


If you are serious about the god part... BIG F*CKING LOL.
So god prefers to help some guy to stop playing a video game then world hunger?

_________________
Currently on EliteSRO

Rogue lvl 5x
Warlock lvl 1x


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sun Feb 01, 2009 12:09 am 
Regular Member
User avatar
Offline

Joined: Dec 2007
Posts: 342
Location:      
I don't have to bother logging in now that I got my very own SilkroadOffline Flash game.

_________________
Image


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sun Feb 01, 2009 6:34 pm 
Frequent Member
User avatar
Offline

Joined: Feb 2008
Posts: 1138
Location: Yes
Thats pretty amazing imo

_________________
You are now manually breathing.


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sun Feb 01, 2009 8:51 pm 
Valued Member
User avatar
Offline

Joined: Feb 2008
Posts: 434
Location:
Alexander
Kori0129 wrote:
HejsaN wrote:
omfg, I am a silkroad addict :((



Do you like to be one? When I was I never liked it, but I still wanted to continue it (It is called "flow effect" in psychology, when you just want to continue the progress for itself) But God told me why I must not play . After a long time I decided to ask God directly that what's wrong with computer game addiction. I was about to start my prayer when a Word came into my mind :"You shall have no other gods before me" Ex. 20.3
Since that I don't play more than 1 minute a day :D ( when wanna help to my bro in playing then I do , but usually I stop it too as soon as I can )

Good Luck :)


lol u must be joking.

_________________
98% of the teenage population put something gay like "98% of the teenage population will try, does or has tried smoking pot. If you're one of the 2% who hasn't, copy & paste this into your signature.".
If you're one of the 2% who hasn't, copy & paste this into your signature.


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Tue Feb 03, 2009 2:44 pm 
Valued Member
User avatar
Offline

Joined: Mar 2007
Posts: 362
Location: Hungary
Qosta420 wrote:
Kori0129 wrote:
HejsaN wrote:
omfg, I am a silkroad addict :((



Do you like to be one? When I was I never liked it, but I still wanted to continue it (It is called "flow effect" in psychology, when you just want to continue the progress for itself) But God told me why I must not play . After a long time I decided to ask God directly that what's wrong with computer game addiction. I was about to start my prayer when a Word came into my mind :"You shall have no other gods before me" Ex. 20.3
Since that I don't play more than 1 minute a day :D ( when wanna help to my bro in playing then I do , but usually I stop it too as soon as I can )

Good Luck :)


lol u must be joking.



No ... :)



Joyfax wrote:
Do not make the list bigger

no new skills = snow shield, force skills, blader and glavier shortimebuffs, pantheon multishoot.
max skills lvl70 = <I think no explanation needed>

_________________
Jesus Christ doesn't care how bad person you are, he loves you .

Maker of the SilkroadOnline Skill Parody 1 and 2


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Tue Feb 03, 2009 2:59 pm 
Frequent Member
User avatar
Offline

Joined: Oct 2008
Posts: 1060
Location:
Off Topic
Jaapii wrote:
Kori0129 wrote:
HejsaN wrote:
Damn, on 4 hours on a week I can level up though I gapping, you dont really know how to grind if it took you 1 day for 15-16 0o You do it on around 10 minutes.


Everyone is speaking about pure grind, but there is no such a thing. Running around, going back to town , when you finally find someone then you start talking and so on...
log in : 2 hours . getting to grind zone : 0.5 hours (without a horse :banghead: ) . 0.5 hour grinding time , if get no DC ... Yep awesome . On Isro<chinese> when I started with the server I usually reached lvl16+ till the end (usually started when it was late afternoon here ) . 2 day: lvl22+ . 3.day : 25+. When I didn't take it so serious : lvl16+ lvl20+ lvl23+ .

WTF? u go to ur grind spot in half an hour? Nice..
I can reach lvl 30 in one day on ecsro while on isro I'm lvl 15 MAX then..


Are you taking breaks between kills or what? I can reach level 28 in one day in iSRO. I can reach around 37 in ecSRO. I reached level 58 almost 59 in like 3-4 days in ecSRO. :)

_________________
Image

ecSRO Highest Damage Contest v1.1


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Tue Feb 03, 2009 3:01 pm 
Valued Member
User avatar
Offline

Joined: Mar 2007
Posts: 362
Location: Hungary
OTG wrote:

Are you taking breaks between kills or what? I can reach level 28 in one day in iSRO. I can reach around 37 in ecSRO. I reached level 58 almost 59 in like 3-4 days in ecSRO. :)


I had internet for 3 hours a day, I said it before ...

_________________
Jesus Christ doesn't care how bad person you are, he loves you .

Maker of the SilkroadOnline Skill Parody 1 and 2


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Tue Feb 03, 2009 5:56 pm 
Frequent Member
User avatar
Offline

Joined: May 2008
Posts: 1095
Location: PORTUGAL
Kori0129 wrote:



Joyfax wrote:
Do not make the list bigger

no new skills = snow shield, force skills, blader and glavier shortimebuffs, pantheon multishoot.
max skills lvl70 = <I think no explanation needed>


Yeah, but other things it doesnt have is:
- Server full of gold bots
- Lots of player bots
- Having to buy a premium every month in order to easly connect to the servers
- Lack of events
- Visual bugs in combos from expecially bladers

_________________
Currently on EliteSRO

Rogue lvl 5x
Warlock lvl 1x


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Tue Feb 03, 2009 6:03 pm 
Valued Member
User avatar
Offline

Joined: Mar 2007
Posts: 362
Location: Hungary
I remember that when I played Isro, I loved goldbots.
It was a great fun to kill them all at the Hyungo Ghost Fortess's gate , later at the West Gate of Donwhang,and finally at the West Gate of Hotan. In half a hour a very nice line was made.(especially at DW! ) One shoot of an npc thief = one kill . I killed thousands overall.


note : Of course I hated login SHIT , but then when I got angry I just killed a few hundreds of them... :D .

_________________
Jesus Christ doesn't care how bad person you are, he loves you .

Maker of the SilkroadOnline Skill Parody 1 and 2


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Feb 07, 2009 7:07 pm 
Frequent Member
User avatar
Offline

Joined: Feb 2008
Posts: 1138
Location: Yes
lol


Attachments:
aaaaaaaaaaaaaaaa.jpg
aaaaaaaaaaaaaaaa.jpg [ 149.31 KiB | Viewed 2427 times ]

_________________
You are now manually breathing.
Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Feb 07, 2009 7:43 pm 
New Member
User avatar
Offline

Joined: Sep 2006
Posts: 35
Location: life
I know what it feels like to be addicted too. I almost failed out of college because I was playing SRO so much. I know it might be tempting to get others to stop playing SRO as well, but it will be hard to do; they will have to see the true evil of online gaming addiction for themselves. I remember when i was addicted and someone tried to me that SRO was bad or a waste a time I wouldn't listen to them or just ignore what they said. Like in all addiction, the person addicted has to want help to get off the addiction. All you guys that are addicted to SRO will quit in your own time, lets just hope your lives are still in tack when you do.


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Feb 07, 2009 8:12 pm 
Banned User
User avatar
Offline

Joined: Aug 2007
Posts: 1108
Location:
Off Topic
izmeister wrote:
lol

Haha. I gave up after I first tried to kill them all, but it didn't really work, they never died. ._.

_________________
<< banned for proof of botting. -cin >>


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Feb 07, 2009 8:13 pm 
Frequent Member
User avatar
Offline

Joined: Feb 2008
Posts: 1138
Location: Yes
Nixie wrote:
izmeister wrote:
lol

Haha. I gave up after I first tried to kill them all, but it didn't really work, they never died. ._.


You have to kill them all at once with that aoe skill.

_________________
You are now manually breathing.


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Aug 01, 2009 6:03 pm 
Valued Member
User avatar
Offline

Joined: Mar 2007
Posts: 362
Location: Hungary
izmeister wrote:
Nixie wrote:
izmeister wrote:
lol

Haha. I gave up after I first tried to kill them all, but it didn't really work, they never died. ._.


You have to kill them all at once with that aoe skill.



sorry for bumping a 5 month old topic, but I'm really curious

how much time did it take for you to solve the puzzle?
I just would like to know how hard it was .

also added a new download link to the first post

_________________
Jesus Christ doesn't care how bad person you are, he loves you .

Maker of the SilkroadOnline Skill Parody 1 and 2


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Aug 01, 2009 6:17 pm 
Active Member
User avatar
Offline

Joined: May 2008
Posts: 837
Location: Nice question O,O
"Jesus"..lol

_________________
Sword d12:
Spoiler!


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Aug 01, 2009 6:18 pm 
Valued Member
User avatar
Offline

Joined: Mar 2007
Posts: 362
Location: Hungary
SwordCloud wrote:
"Jesus"..lol


:)

_________________
Jesus Christ doesn't care how bad person you are, he loves you .

Maker of the SilkroadOnline Skill Parody 1 and 2


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Aug 01, 2009 6:31 pm 
Active Member
User avatar
Offline

Joined: May 2008
Posts: 837
Location: Nice question O,O
Kori0129 wrote:
SwordCloud wrote:
"Jesus"..lol


:)

If you make a game for public,you should not make religion inside,or at east tell to people who will download this software that there is some "jesus" or sh it..
But i said that,i say nothing.. :!:

_________________
Sword d12:
Spoiler!


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Aug 01, 2009 6:53 pm 
Valued Member
User avatar
Offline

Joined: Mar 2007
Posts: 362
Location: Hungary
SwordCloud wrote:
Kori0129 wrote:
SwordCloud wrote:
"Jesus"..lol


:)

If you make a game for public,you should not make religion inside,or at east tell to people who will download this software that there is some "jesus" or sh it..
But i said that,i say nothing.. :!:


I think putting my Lord's name into my own written program is pretty much allowed. Publishing is allowed also, since there is a speech and religion freedom.

If you think that this a hidden attack directly to you, then sorry . I didn't mean to do that.

End of religion argue

_________________
Jesus Christ doesn't care how bad person you are, he loves you .

Maker of the SilkroadOnline Skill Parody 1 and 2


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Aug 01, 2009 7:04 pm 
Elite Member
User avatar
Offline

Joined: Mar 2008
Posts: 5751
Location:
Aege
Downloading it just right now :)

_________________
Dubious ・ Lvl 101 ・ STR Archer ・ jSRO-R ・ active
PillowFight ・ Lvl 69 ・ STR Archer ・ jSRO-R ・ inactive
Aggrobatic ・ Lvl 101 ・ Warrior / Cleric ・ jSRO-R ・ inactive


Check out our music-video! http://www.youtube.com/watch?v=iMxZWMWRjSM
I'm on the drums, beaches!


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Aug 01, 2009 7:23 pm 
Active Member
User avatar
Offline

Joined: May 2008
Posts: 837
Location: Nice question O,O
Kori0129 wrote:

I think putting my Lord's name into my own written program is pretty much allowed. Publishing is allowed also, since there is a speech and religion freedom.

If you think that this a hidden attack directly to you, then sorry . I didn't mean to do that.

End of religion argue

By the law of some country ,it is not allowed or you must tell it in your program description,religion is individual freedom .I don't want to be rude with you,i just say you should put it into you program description(first post)not that hard :?:

_________________
Sword d12:
Spoiler!


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Aug 01, 2009 7:25 pm 
Active Member
User avatar
Offline

Joined: Apr 2009
Posts: 654
Location:
Off Topic
Love religious nutjobs. Hilarious to read what they think.

_________________
Mindmaker
Image


Top
 Profile  
 
 Post subject: Re: SilkroadOffline - a little logic game made by me
PostPosted: Sat Aug 01, 2009 8:13 pm 
Common Member
User avatar
Offline

Joined: Nov 2008
Posts: 119
Location:
Tibet
DonBebek wrote:
Touching, but too bad I don't believe in god, lol


Cuz your one big noob :wink:

_________________
PROUD TO BE A BOSNIAN

chars:
TrustBuster - wizzard bard lvl 6x (lvling) /Really Active
iQuit - blader lvl 2x (farming 1,5m SP) /Inactive
PigBenis - warrior cleric lvl 2x (farming 1m SP finished) /sold


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 66 posts ]  Go to page Previous  1, 2, 3  Next

All times are UTC


Who is online

Users browsing this forum: No registered users and 32 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group