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  [ 38 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: wing will be removed form item mall on oct 16th
PostPosted: Mon Oct 01, 2007 11:31 am 
Banned User
Offline

Joined: Jan 2007
Posts: 5887
Location: www.youporn.com
Quote:
Hello. This is Silkroad Online.

Limited sales of avatar items, Angel Wing Dress, is scheduled to end two weeks later, during the weekly server inspection time on October 16th, 2007.

We thank our users for showing great interest in this avatar item, and will continue to present new, various avatar items to satisfy more of our users.

End Date of Limited Sales of Angel Wing Dress : 10/16/2007 15:00 Silkroad Standard Time



dang... u guy waiting for devil betetr be sure they will add them


lol

_________________
<<banned from SRF for bot admission. -SG>>


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 11:33 am 
Active Member
Offline

Joined: Jun 2007
Posts: 946
when are they gonna add the turkey leg avatar wich gives you 100% speed boost?

_________________
<<banned from SRF for remaking a banned account. -SG>>


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 12:27 pm 
Banned User
User avatar
Offline

Joined: Sep 2007
Posts: 1496
Location: BEEN DERPIN ALL DAY DERP DERP
Wow they said till they out of stock,just to make player buy more and faster,jesus joymax would murder hes family for 20$ : :banghead:

_________________
<<Account shut down to prevent sockpuppeting. New user accountname "hey">>


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 12:37 pm 
Banned User
Offline

Joined: Jan 2007
Posts: 5887
Location: www.youporn.com
Twist wrote:
Wow they said till they out of stock,just to make player buy more and faster,jesus joymax would murder hes family for 20$ : :banghead:



how oculd it be out of stock?

_________________
<<banned from SRF for bot admission. -SG>>


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 12:48 pm 
Banned User
User avatar
Offline

Joined: Sep 2007
Posts: 1496
Location: BEEN DERPIN ALL DAY DERP DERP
Fat_Smurf wrote:
Twist wrote:
Wow they said till they out of stock,just to make player buy more and faster,jesus joymax would murder hes family for 20$ : :banghead:



how oculd it be out of stock?


Look in item mall and see:Until stocks are sold out. :P

_________________
<<Account shut down to prevent sockpuppeting. New user accountname "hey">>


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 1:05 pm 
Senior Member
User avatar
Offline

Joined: Aug 2006
Posts: 4093
Location: Earth
Fat_Smurf wrote:
Twist wrote:
Wow they said till they out of stock,just to make player buy more and faster,jesus joymax would murder hes family for 20$ : :banghead:



how oculd it be out of stock?


Easy. Server side code could include:

int NumOfAngelWings = 2000;

int PurchaseAngelWings(int quantity)
{
if (NumOfAngelWings == 0)
{
MessageBox.Show("Error: Angel Wings are out of stock.");
return 1;
}
elseif (NumOfAngelWings < quantity)
{
MessageBox.Show("Error: Not enough Angel Wings in stock. There are " + quantity + "angel wings left.");
return 1;
}
else
{
NumOfAngelWings = NumOfAngelWings - quantity;
PlayerInventory.Add(item="AngelWings", num=quantity);
return 0;
}
}

:)

_________________
Missing the good times in SRO... :love:

SRO:
1x, STR Blader (Thebes)
54, STR blader (Venice)
0x, INT wizard (Venice)
19, INT spear (Venice)
34, STR rogue/bard (Venus)
0x, STR blader (Venus)
8x, INT bard/cleric (Gaia)


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 1:07 pm 
Banned User
Offline

Joined: Jan 2007
Posts: 5887
Location: www.youporn.com
PR0METHEUS wrote:
Fat_Smurf wrote:
Twist wrote:
Wow they said till they out of stock,just to make player buy more and faster,jesus joymax would murder hes family for 20$ : :banghead:



how oculd it be out of stock?


Easy. Server side code could include:

int NumOfAngelWings = 2000;

int PurchaseAngelWings(int quantity)
{
if (NumOfAngelWings == 0)
{
MessageBox.Show("Error: Angel Wings are out of stock.");
return 1;
}
elseif (NumOfAngelWings < quantity)
{
MessageBox.Show("Error: Not enough Angel Wings in stock. There are " + quantity + "angel wings left.");
return 1;
}
else
{
NumOfAngelWings = NumOfAngelWings - quantity;
PlayerInventory.Add(item="AngelWings", num=quantity);
return 0;
}
}

:)



and the point of this would be?


getting less money cause ur code block the item mall? :P

_________________
<<banned from SRF for bot admission. -SG>>


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 1:12 pm 
Banned User
Offline

Joined: Apr 2006
Posts: 3216
Location: wat
PR0METHEUS wrote:
Fat_Smurf wrote:
Twist wrote:
Wow they said till they out of stock,just to make player buy more and faster,jesus joymax would murder hes family for 20$ : :banghead:



how oculd it be out of stock?


Easy. Server side code could include:

int NumOfAngelWings = 2000;

int PurchaseAngelWings(int quantity)
{
if (NumOfAngelWings == 0)
{
MessageBox.Show("Error: Angel Wings are out of stock.");
return 1;
}
elseif (NumOfAngelWings < quantity)
{
MessageBox.Show("Error: Not enough Angel Wings in stock. There are " + quantity + "angel wings left.");
return 1;
}
else
{
NumOfAngelWings = NumOfAngelWings - quantity;
PlayerInventory.Add(item="AngelWings", num=quantity);
return 0;
}
}

:)

That doesn't really make an item out of stock... If they want to they can just change the number from 2000 to wanbillionz.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 1:47 pm 
Common Member
User avatar
Offline

Joined: Jul 2007
Posts: 132
Location:
Athens
Fat_Smurf wrote:
how oculd it be out of stock?

ran out of angels to slay for wings. devils are next. :D

PROMETHEUS wrote:
Easy. Server side code could include:

int NumOfAngelWings = 2000;

int PurchaseAngelWings(int quantity)
{
if (NumOfAngelWings == 0)
{
MessageBox.Show("Error: Angel Wings are out of stock.");
return 1;
}
elseif (NumOfAngelWings < quantity)
{
MessageBox.Show("Error: Not enough Angel Wings in stock. There are " + quantity + "angel wings left.");
return 1;
}
else
{
NumOfAngelWings = NumOfAngelWings - quantity;
PlayerInventory.Add(item="AngelWings", num=quantity);
return 0;
}
}

lol java

Hell hell= new Hell();
int DevilWings;
int Devils;

if(AngelWings==0){
while(hell.getNumofDevils>0){
DevilWings=hell.slayDevils();
}
}

_________________
Image


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 1:57 pm 
Loyal Member
User avatar
Offline

Joined: Feb 2007
Posts: 1715
Location:
Off Topic
finally i don't like those wings

_________________
Image

Please click and help me with my little game. Don't worry it's not a link to a virus filled site or anything harmful. It's just like those links to help a little dragon grow thingie.


http://s4.bitefight.org/c.php?uid=184584


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 2:08 pm 
Common Member
User avatar
Offline

Joined: Sep 2007
Posts: 164
Location:
Xian
Vibrator wrote:
when are they gonna add the turkey leg avatar wich gives you 100% speed boost?


lol

_________________
daemon wrote:
its a bird a plane no its super manyang 8)

Image
ImageImage


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 2:14 pm 
Common Member
User avatar
Offline

Joined: May 2007
Posts: 195
Location: VA
im waiting for devil wings for my theif!


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 2:22 pm 
Common Member
User avatar
Offline

Joined: Jul 2007
Posts: 155
Location:
Alexander
what! they gonna end sale, im still saving up money, hey its not easy to save money joymax, give us more time, take away the sale next year, christmas is coming i go ask my folks for a wing for christmas present :D


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 2:23 pm 
Senior Member
User avatar
Offline

Joined: Aug 2006
Posts: 4093
Location: Earth
Waisha wrote:
That doesn't really make an item out of stock... If they want to they can just change the number from 2000 to wanbillionz.


Well true, but if Sears had 10,000 dishwashers for sale "until out of stock" they could just order a wanbillionz more.

If Joymax just put the new wings in the mall as a normal item, people might not buy them as much. Since it's a "limited time" item, there could be more of a rush for people to buy them otherwise risk not getting an "uber leet" set of wings. I figure it's marketing.

Maybe when stocks run out, they'll bring out an even better item. Maybe they're doing it for a limited time to test the waters and see how good the item goes over.

_________________
Missing the good times in SRO... :love:

SRO:
1x, STR Blader (Thebes)
54, STR blader (Venice)
0x, INT wizard (Venice)
19, INT spear (Venice)
34, STR rogue/bard (Venus)
0x, STR blader (Venus)
8x, INT bard/cleric (Gaia)


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 2:58 pm 
Banned User
Offline

Joined: Mar 2007
Posts: 3467
Location:
Babel
The announcement implies JM will put up more avatars than just the known devil wings. I hope they have a bunny suit up hopefully :love:

_________________
<<banned from SRF for bot support. -SG>>


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 3:33 pm 
Active Member
User avatar
Offline

Joined: Mar 2007
Posts: 843
Location:
Greece
I sure hope they have limited stocks, I'm sick of seeing angels all around. Wings are cool but not when 2/3 of the server has them.

_________________
Epic Inferno - A Silkroad Movie
Image


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 3:48 pm 
Active Member
User avatar
Offline

Joined: Oct 2006
Posts: 598
Location:
Tibet
Sylhana wrote:
The announcement implies JM will put up more avatars than just the known devil wings. I hope they have a bunny suit up hopefully :love:


On the avatar section there are 4 slots and the angel suit fill 2 of them. Im sure that they will make several parts to combine with different amount of upgradeability. In that way if you use 2 parts instead of angel wings(that use 2 slots) you will be able to have more "magic Options" and people will buy them again and leave angel wings on storage. Finally you will have head, chest and legs that you pay with silk.

_________________
Image
Image Latest addition
Now that I kill them all I can rest in peace ^^


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 3:57 pm 
Senior Member
User avatar
Offline

Joined: Aug 2006
Posts: 4093
Location: Earth
HakubiNi wrote:
I sure hope they have limited stocks, I'm sick of seeing angels all around. Wings are cool but not when 2/3 of the server has them.


Exactly. Same with the GDFs. They were kinda cool until EVERYONE had a set. They would have been fairly limited if they didn't extend the Thanksgiving (I think) event last year.

tomiotar wrote:
On the avatar section there are 4 slots and the angel suit fill 2 of them. Im sure that they will make several parts to combine with different amount of upgradeability. In that way if you use 2 parts instead of angel wings(that use 2 slots) you will be able to have more "magic Options" and people will buy them again and leave angel wings on storage. Finally you will have head, chest and legs that you pay with silk.


Yeah, and after that, you'll see the NPCs in town suddenly stop selling head, chest, and leg equipment. Mobs will stop dropping them as well. Then everyone will be forced to either pay 2 billion gold for a lvl 24 leg protector, or buy one from the item mall.

Hey Joymax would get more money that way.... :banghead:

_________________
Missing the good times in SRO... :love:

SRO:
1x, STR Blader (Thebes)
54, STR blader (Venice)
0x, INT wizard (Venice)
19, INT spear (Venice)
34, STR rogue/bard (Venus)
0x, STR blader (Venus)
8x, INT bard/cleric (Gaia)


Last edited by PR0METHEUS on Mon Oct 01, 2007 4:00 pm, edited 1 time in total.

Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 3:58 pm 
Banned User
Offline

Joined: Sep 2006
Posts: 3895
Location: Artists Corner & Aege
What a way to make more money >.>

_________________
<<banned from SRF for proof of botting. -SG>>


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 4:06 pm 
Banned User
User avatar
Offline

Joined: Feb 2007
Posts: 1428
Location:
Aege
Until they start selling sosun +14 armor and weapons for silk ;)


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 4:09 pm 
Banned User
Offline

Joined: Mar 2007
Posts: 3467
Location:
Babel
PR0METHEUS wrote:
Yeah, and after that, you'll see the NPCs in town suddenly stop selling head, chest, and leg equipment. Mobs will stop dropping them as well. Then everyone will be forced to either pay 2 billion gold for a lvl 24 leg protector, or buy one from the item mall.

Hey Joymax would get more money that way.... :banghead:


Lolz, if that happens, theres no way sro would be a f2p game. Grinding nude is just not an option :)

_________________
<<banned from SRF for bot support. -SG>>


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 4:42 pm 
Senior Member
User avatar
Offline

Joined: Aug 2006
Posts: 4093
Location: Earth
Sylhana wrote:
PR0METHEUS wrote:
Yeah, and after that, you'll see the NPCs in town suddenly stop selling head, chest, and leg equipment. Mobs will stop dropping them as well. Then everyone will be forced to either pay 2 billion gold for a lvl 24 leg protector, or buy one from the item mall.

Hey Joymax would get more money that way.... :banghead:


Lolz, if that happens, theres no way sro would be a f2p game. Grinding nude is just not an option :)


That was my point ;-)

I guess if they turned all equipment into item mall items, then if you want to play for free, you'd have to stick with your current gear and just face the fact that you'll never level (very far). You could still go out and job, etc. But you'd just never really advance.

_________________
Missing the good times in SRO... :love:

SRO:
1x, STR Blader (Thebes)
54, STR blader (Venice)
0x, INT wizard (Venice)
19, INT spear (Venice)
34, STR rogue/bard (Venus)
0x, STR blader (Venus)
8x, INT bard/cleric (Gaia)


Top
 Profile  
 
 Post subject:
PostPosted: Mon Oct 01, 2007 8:02 pm 
Active Member
User avatar
Offline

Joined: Dec 2006
Posts: 734
Location:
Xian
LOL nekkid trading...there's just something unique about riding an ox in the nude...

Quote:
...and they all showed up at the doorstep of town wearing nothing but their trader flags and smiles...

_________________
Image


Top
 Profile  
 
 Post subject:
PostPosted: Tue Oct 02, 2007 3:59 am 
Casual Member
User avatar
Offline

Joined: Sep 2007
Posts: 78
Location: Swedish Nurses FTW!
Guys...guys...what is this debate about the "Limited time offer", wouldn't simply guess that is a normal buying incentive? I mean, come on, what the heck is limited about bytes and bits? There's nothing limited about this, billions can be sold or just pretend this is limited to force people to buy them because they can't buy them afterward.

Just a normal lame as... marketing ploy to get Joe Blow to buy the tacky looking angel suit.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Oct 02, 2007 4:49 am 
Chronicle Writer
User avatar
Offline

Joined: Jan 2007
Posts: 9841
Location: US - Illidan
GDF were never...ugliest lamest special item ever....i like those funky hats they have in KSRO

_________________
Image Image
signatures by Hostage Co. <3
~PoP is DEAD! My sTyLe is Supa-Flat!!~


Top
 Profile  
 
 Post subject:
PostPosted: Tue Oct 02, 2007 5:28 am 
Valued Member
User avatar
Offline

Joined: Mar 2007
Posts: 432
Location:
Venice
lol too bad i was gona buy them at the end of the month now nvm ill save 13bucks :P


Top
 Profile  
 
 Post subject:
PostPosted: Tue Oct 02, 2007 6:17 am 
Banned User
Offline

Joined: Jul 2007
Posts: 621
Location:
Troy
That's smart of them to announce it a week before to make people rush to buy. I'm 95% sure they'll sell angel wings again. Maybe not next month or after that, but sooner or later.. they'll sell it again and make +++ again. Between the times they'll make new garbage.

The devil wings will prolly come during the week of Halloween. Sell untill week of thanksgiving and watch them come out with a turkey suit *Gasp* then santa *gaps more* then cupid *Mega gasp*. It'd be like if they do make a new set for every month.

_________________
<<banned from SRF for bot admission. -SG>>


Top
 Profile  
 
 Post subject:
PostPosted: Tue Oct 02, 2007 6:37 am 
Valued Member
User avatar
Offline

Joined: Aug 2007
Posts: 478
Location:
Mars
me.. want.. super.. girl.. suit! :love:

_________________
Image

[Mars]
[Sky]-[Wizard]
"You're a pervert."
"No I'm not! I just happen to find them(porn) interesting!"


Top
 Profile  
 
 Post subject:
PostPosted: Tue Oct 02, 2007 6:43 am 
Veteran Member
User avatar
Offline

Joined: Jul 2007
Posts: 3604
Location:
Venus
fight4Love wrote:
ran out of angels to slay for wings. devils are next. :D


HA HAHA, i'm not sure why that was so funny

_________________
Image
A man once said, "Fear is contagious". So then the same must hold true for courage.
The Roar of a Crowd begins with one man.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Oct 02, 2007 7:06 am 
Frequent Member
User avatar
Offline

Joined: Oct 2006
Posts: 1459
Location:
Alps
there will be alot more devil wings bought i bet... i'll prolly get a pair

_________________
Image

Mysterious Death Desert
Mysterious desert that causes mysterious deaths


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

All times are UTC


Who is online

Users browsing this forum: No registered users and 9 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