| inventory clutter
- Goto page Previous 1, 2 |
|
View previous topic :: View next topic |
Shandris |
|
Posted:
Thu Dec 06, 2007 5:02 pm |
Guest
Karma: 0
Usergroups: None
Items
|
|
| seifer wrote: |
| youre just a show off Fun. |
busted LOL
|
|
| |
 |
 |
FuNEnD3R |
|
Posted:
Thu Dec 06, 2007 5:05 pm |
Site Owner


Age: 32
Joined: 09 Oct 2004
      
Posts: 8,492
Liked Posts: 50
Karma: 1809
Usergroups: Advent Children Blacksmith FF Experts
6505332 Gil
Items more...
|
|
*bans seifer* Schools do not teach the funender code of honor!
|
Check out a cool site with music you never heard before: www.F3music.com |
| |
 |
 |
cable |
|
Posted:
Thu Dec 06, 2007 5:23 pm |
Tetra Elemental

Joined: 26 May 2006
     
Posts: 29,213
Liked Posts: 26
Karma: 996
Location: Work
Usergroups: A World of Cultures Blacksmith Chocobo Trainers
11792602 Gil
Items more...
|
|
Most of it is understandable I think, but it would take loads of time to write.
|
Stuck? Read the RPG FAQ!
Questions? Queries? Ask the Funender Support!
For general questions on the site, including forum ranks:
FAQ
Do not feed trolls! Or you shall be turned into troll food!
No spam permitted; they shall all become sandwich fillings which you will have to eat in their entirety.
Our Queen is in residence; please be mindful of the ban hammer.
Our all-seeing, all-able Eye in the Sky is now back from visiting different galaxies. As such, no activity shall be hidden from view.
P.S. Enjoy the site  |
| |
 |
 |
FuNEnD3R |
|
Posted:
Thu Dec 06, 2007 5:25 pm |
Site Owner


Age: 32
Joined: 09 Oct 2004
      
Posts: 8,492
Liked Posts: 50
Karma: 1809
Usergroups: Advent Children Blacksmith FF Experts
6505332 Gil
Items more...
|
|
Yeah it just takes time and the most time consuming thing is security to make sure the person who is allowed has access to everything within the limits set.
|
Check out a cool site with music you never heard before: www.F3music.com |
| |
 |
 |
cable |
|
Posted:
Thu Dec 06, 2007 5:32 pm |
Tetra Elemental

Joined: 26 May 2006
     
Posts: 29,213
Liked Posts: 26
Karma: 996
Location: Work
Usergroups: A World of Cultures Blacksmith Chocobo Trainers
11792602 Gil
Items more...
|
|
I guess you don't exactly want people to have access to all the rares >.<.... Or loads of items for free
|
Stuck? Read the RPG FAQ!
Questions? Queries? Ask the Funender Support!
For general questions on the site, including forum ranks:
FAQ
Do not feed trolls! Or you shall be turned into troll food!
No spam permitted; they shall all become sandwich fillings which you will have to eat in their entirety.
Our Queen is in residence; please be mindful of the ban hammer.
Our all-seeing, all-able Eye in the Sky is now back from visiting different galaxies. As such, no activity shall be hidden from view.
P.S. Enjoy the site  |
| |
 |
 |
Dazzard |
|
Posted:
Sun Dec 23, 2007 5:11 pm |
The Final Aeon
Age: 24
Joined: 17 Jun 2006
    
Posts: 31,668
Liked Posts: 5
Karma: 640
Location: Either Luton or Dunstable probabily...
Usergroups: Chocobo Trainers Funender Support Justice Knights
4535777 Gil
Items more...
|
|
| FuNEnD3R wrote: |
Thanks but it is very difficult to learn for beginners If you are interested though you would have to learn and memorize all of the commands from Mysql and php (assuming that you already know html/css/javascript):
http://www.php.net/
http://www.mysql.com/
Here is just a little sample code from the inventory to give you an idea of the thousands of lines and 50+ files of codes required for the game to function:
| Code: |
if ($useritemamount > 0)
{
$useritemsamount = 1;
$shopitems = $description . '<td class="row1" align="right"><span class="genmed">' . $useritemamount . '</span></td></tr>';
$shopitems .= ( $display_exchange ) ? '<tr><td colspan="3" class="row2" align="center"><table><tr><td><span class="genmed"><b><form action="' . append_sid('shop_bs.' . $phpEx . '?action=buybulk&item=' . $row['id']) . '" method="post"><b>Quantity:</b> <input class="post" type="text" maxlength="3" size="3" name="qtybuy" value="' . ($useritemsamount) . '"> <input type="submit" class="mainoption" value="Buy"></b></span></td></form><td width="25"></td><td class="row2" align="center"><span class="genmed"><b><form action="' . append_sid('shop_bs.' . $phpEx . '?action=sellbulk&item=' . $row['id']). '" method="post"><b>Quantity:</b> <input class="post" type="text" maxlength="3" size="3" name="qtysell" value="' . $useritemamount . '"> <input type="submit" class="mainoption" value="Sell"></b></span></td></form></tr></table></td></tr>' : '';
$shopitems .= ( $show_discard ) ? '<tr><td colspan="3" class="row2" align="center"><table><tr><td><span class="genmed"><b><form action="' . append_sid('shop_discard.' . $phpEx . '?item=' . $row['id']). '" method="post"><b>Quantity:</b> <input class="post" type="text" maxlength="3" size="3" name="amt" value="1"> <input type="submit" class="mainoption" style="color: red; font-weight: bold;" value="Discard"></b></span></td></form><td width="25"></td><td> </td></tr></table></td></tr>' : '';
}
}
}
elseif (($board_config['multibuys'] == "off") || ($useritemamount < 1))
{
if (!isset($useritemamount)) { $useritemamount = 0; $sellbuy = "buy"; }
$shopitems = $description . '<td class="row1" align="right"><span class="genmed">' . $useritemamount . '</span></td></tr>';
$shopitems .= ( $display_exchange ) ? '<tr><td colspan="3" class="row2"><span class="gen"><b><a href="'.append_sid('shop_bs.'.$phpEx.'?action='.$sellbuy.'&item='.$row['id']).'" title="'.ucwords($sellbuy).' '.ucwords($row['name']).'">'.ucwords($sellbuy).' '.ucwords($row['name']).'</a></b></span></td></tr>' : '';
$shopitems .= ( $show_discard ) ? '<tr><td colspan="3" class="row2" align="center"><table><tr><td><span class="genmed"><b><form action="' . append_sid('shop_discard.' . $phpEx . '?item=' . $row['id']). '" method="post"><b>Quantity:</b> <input class="post" type="text" maxlength="3" size="3" name="amt" value="1"> <input type="submit" class="mainoption" style="color: red; font-weight: bold;" value="Discard"></b></span></td></form><td width="25"></td><td> </td></tr></table></td></tr>' : '';
}
$title = ucwords($row['name']).' Information';
$page_title = 'Item information';
$shoptablerows = 3;
if( $display_exchange )
{
$shoplocation = ' -> <a href="'.append_sid('shop.'.$phpEx, true).'" class="nav">Shop List</a> -> <a href="'.append_sid('shop_inventory.' .$phpEx . '?action=shoplist&shop=' . $shop_check['id'], true) . '" class="nav">'.ucwords($row['shop']).' Inventory</a>';
}
else
{
$shoplocation = ' -> <a href="'.append_sid('headquarters.'.$phpEx, true).'" class="nav">Headquarters</a> -> <a href="' . append_sid('shop.' . $phpEx . '?action=inventory&searchid=' . $userdata['user_id'], true).'" class="nav">'. $userdata['username'] . '\'s Inventory</a>';
} |
That code is simple in that it is only used for the discard item page. Good luck  |
you have to go through all that every time you make improvements? -.-; I think I'll appriciate your work a lot more from now on Fun
|
First to master the monk class (probably my proudest/only Funender achievement)
Thanks Rukkie
Thanks Crazed ^^
Darkrai + Charizard = dazard... 1 "z" short =/
NOTE: If I don't pay for an RPG EBAY auction, it's not because I changed my mind, I just dissapeared in one of those forum cracks... If you still want me to pay for something I bid for then PM me =) |
| |
 |
 |
FuNEnD3R |
|
Posted:
Sun Dec 23, 2007 6:01 pm |
Site Owner


Age: 32
Joined: 09 Oct 2004
      
Posts: 8,492
Liked Posts: 50
Karma: 1809
Usergroups: Advent Children Blacksmith FF Experts
6505332 Gil
Items more...
|
|
Yes that is why it takes months to add new features sometimes That is a small snipet there are over a hundred different files with 1000+ lines of code like that so it takes time.
|
Check out a cool site with music you never heard before: www.F3music.com |
| |
 |
 |
wingzero |
|
Posted:
Mon Dec 24, 2007 5:45 pm |
Ultima Weapon

Age: 23
Joined: 13 May 2006
     
Posts: 16,459
Liked Posts: 14
Karma: 1199
Location: on the planet H.I.T.U. preparing my Ragnarok spaceship for flight
Usergroups: Chocobo Trainers Funender Garden Funender Royal Court
28318752 Gil
Items more...
|
|
| FuNEnD3R wrote: |
Yes that is why it takes months to add new features sometimes That is a small snipet there are over a hundred different files with 1000+ lines of code like that so it takes time. |
O_o in that case, you realy hurried on the chocobo feature huh?
|
<-- haine's kickass sig
| arc wrote: |
(23:16:14) Arc angel: so
used to read stuff on funender
as semi intelligent
now verytime i read tyour posts
youre using you old spice voice
and ery sentence
has a sexual undertone
XD
always
ALWAYS
be scared to mic with wing
even
IIIIIIIII
wanna flirt with him
ffs
XD |
| Death_Penalty wrote: |
Purrs like a kitten, stings like a bee,
Wingy'll have your clothes off before you even see. |
|
| |
 |
 |
FuNEnD3R |
|
Posted:
Mon Dec 24, 2007 5:48 pm |
Site Owner


Age: 32
Joined: 09 Oct 2004
      
Posts: 8,492
Liked Posts: 50
Karma: 1809
Usergroups: Advent Children Blacksmith FF Experts
6505332 Gil
Items more...
|
|
Haha yeah I forgot how long it took, was it a week of 16+ hour working nonstop? Or may have been 3 days.
|
Check out a cool site with music you never heard before: www.F3music.com |
| |
 |
 |
cable |
|
Posted:
Sun Jan 06, 2008 3:45 pm |
Tetra Elemental

Joined: 26 May 2006
     
Posts: 29,213
Liked Posts: 26
Karma: 996
Location: Work
Usergroups: A World of Cultures Blacksmith Chocobo Trainers
11792602 Gil
Items more...
|
|
Um, didn't you have like a near-breakdown after doing the Chocobo thing? I hope you're not working yourself this hard these days...
|
Stuck? Read the RPG FAQ!
Questions? Queries? Ask the Funender Support!
For general questions on the site, including forum ranks:
FAQ
Do not feed trolls! Or you shall be turned into troll food!
No spam permitted; they shall all become sandwich fillings which you will have to eat in their entirety.
Our Queen is in residence; please be mindful of the ban hammer.
Our all-seeing, all-able Eye in the Sky is now back from visiting different galaxies. As such, no activity shall be hidden from view.
P.S. Enjoy the site  |
| |
 |
 |
| |