se7enet purgatorio

Page 5 of 6 « First<23456>
Topic Options
Rate This Topic
#18393 - 10/02/08 08:40 AM Re: Want a custom feature? [Re: Justas]
Fayt
Crunchberries
***

Registered: 11/08/05
Posts: 1131
Loc: My Computer, USA

Offline
I don't use any of those languages. I am strictly PHP and MYSQL
_________________________
MasterFayt - Amara 5 - Manas - Banar

Top
#18394 - 10/02/08 08:45 AM Re: Want a custom feature? [Re: Justas]
Dragonking
Grape Nuts


Registered: 12/09/06
Posts: 39

Offline
IS the other map made with php? If so just make a div above it and show the images in a if (check if it's west, east, north or south, and then show the image in the div)
Top
#18395 - 10/02/08 10:13 AM Re: Want a custom feature? [Re: Dragonking]
Fayt
Crunchberries
***

Registered: 11/08/05
Posts: 1131
Loc: My Computer, USA

Offline
Depends on which map you are talking about.
_________________________
MasterFayt - Amara 5 - Manas - Banar

Top
#18398 - 10/03/08 10:02 AM Re: Want a custom feature? [Re: Fayt]
Justas
Corn Flakes


Registered: 08/30/08
Posts: 63

Offline
Map is made with php..
What code and there I have to add?

Top
#18399 - 10/03/08 11:53 AM Re: Want a custom feature? [Re: Justas]
Fayt
Crunchberries
***

Registered: 11/08/05
Posts: 1131
Loc: My Computer, USA

Offline
If player moved south, show south arrow.
_________________________
MasterFayt - Amara 5 - Manas - Banar

Top
#18517 - 10/17/08 12:25 PM Re: Want a custom feature? [Re: Fayt]
shaunhellend
Malt-o-Meal


Registered: 10/17/08
Posts: 1

Offline
I'd like a modification to the fight where your battling and all of a sudden, the monster will 'transform' into a stronger monster, making the battle harder and alot more fun.

But I'm not sure how to go about it ...

Top
#18520 - 10/17/08 05:48 PM Re: Want a custom feature? [Re: shaunhellend]
Fayt
Crunchberries
***

Registered: 11/08/05
Posts: 1131
Loc: My Computer, USA

Offline
Add a random code in it.

$newfight = rand(1,10);

Then in the fight script after your action. Add this

if ($newfight == 5) {
//Update currentmonsterid to the new id
//Update currentmonsterhp to new HP
//Etc
}

Also you can add something inside the if statement like this.

$page .= 'All of a sudden the monster gets stronger.';

Top
#18552 - 10/25/08 01:59 PM Re: Want a custom feature? [Re: Fayt]
Styx
Malt-o-Meal


Registered: 01/15/08
Posts: 22

Offline
A forum PHP that includes the following:

- Subforums
- Stickies
- Locking
- Deleting (But there's a mod for that)
- Moving Topics

Would that be possible?
_________________________
DK abilities: Better than Average - Titles: Solo Developer of NeoRPG
---------------------- Goals: --------------------
-------------V = Done | X = Failed----------------
Make NeoRPG work. [V]
Add Quests. [X]
Add PvP. [ ]
Add NPCs. [V]
Add a better internal forum. [V]
Get at least 50 registered people. [ ]


Top
#18553 - 10/25/08 09:58 PM Re: Want a custom feature? [Re: Styx]
EAL
Grape Nuts


Registered: 07/03/08
Posts: 31

Offline
i just made a forum mod. it includes:
- stickies the thread appears first
- locking threads
- # of views
- if you delete a reply you can reduce the number of replies by one so its accurate.

and a admin panel so its easy to use and control

heres the link:
http://dragon.se7enet.com/mods/index.php?do=file&id=214

Top
#18555 - 10/25/08 10:41 PM Re: Want a custom feature? [Re: EAL]
Fayt
Crunchberries
***

Registered: 11/08/05
Posts: 1131
Loc: My Computer, USA

Offline
Styx, you just asked if it was possible. EVERYTHING is possible.

What do you mean Subforums? explain....

We will start with pinning. Stickies is what Anman has in his hand.

Go to your database and put in the field
pin tinyint 1 default 0

In your script in the top section add

if ($message == "1")
{
//Put message link here
}
else {
$page .= '';
}
_________________________
MasterFayt - Amara 5 - Manas - Banar

Top
#18557 - 10/25/08 11:57 PM Re: Want a custom feature? [Re: Fayt]
ohmyiv
Malt-o-Meal


Registered: 10/11/08
Posts: 2

Offline
how about a mail count...i.e. Unread(1)?
Top
#18558 - 10/26/08 12:29 AM Re: Want a custom feature? [Re: ohmyiv]
Styx
Malt-o-Meal


Registered: 01/15/08
Posts: 22

Offline
Awesome. Now all I need is subforums like.

'Game Discussion'
'Suggestions'
_________________________
DK abilities: Better than Average - Titles: Solo Developer of NeoRPG
---------------------- Goals: --------------------
-------------V = Done | X = Failed----------------
Make NeoRPG work. [V]
Add Quests. [X]
Add PvP. [ ]
Add NPCs. [V]
Add a better internal forum. [V]
Get at least 50 registered people. [ ]


Top
#18559 - 10/26/08 03:49 AM Re: Want a custom feature? [Re: Styx]
Styx
Malt-o-Meal


Registered: 01/15/08
Posts: 22

Offline
I've just installed this mod:
http://dragon.se7enet.com/mods/index.php?do=file&id=70

Is it possible to give each clan a special forum?
_________________________
DK abilities: Better than Average - Titles: Solo Developer of NeoRPG
---------------------- Goals: --------------------
-------------V = Done | X = Failed----------------
Make NeoRPG work. [V]
Add Quests. [X]
Add PvP. [ ]
Add NPCs. [V]
Add a better internal forum. [V]
Get at least 50 registered people. [ ]


Top
#18562 - 10/26/08 08:58 AM Re: Want a custom feature? [Re: Styx]
Fayt
Crunchberries
***

Registered: 11/08/05
Posts: 1131
Loc: My Computer, USA

Offline
Yes clans can have a special forum. Just redirect them to their clan forum by using an $id

For mail count you can either use COUNT() in a query, or you can select mysql_num_rows by receipt.
_________________________
MasterFayt - Amara 5 - Manas - Banar

Top
#18565 - 10/26/08 09:42 AM Re: Want a custom feature? [Re: Fayt]
Styx
Malt-o-Meal


Registered: 01/15/08
Posts: 22

Offline
Now in PHP newbie language? Or should I take my PHP booklet? (Not to read it. *grin*)
_________________________
DK abilities: Better than Average - Titles: Solo Developer of NeoRPG
---------------------- Goals: --------------------
-------------V = Done | X = Failed----------------
Make NeoRPG work. [V]
Add Quests. [X]
Add PvP. [ ]
Add NPCs. [V]
Add a better internal forum. [V]
Get at least 50 registered people. [ ]


Top
Page 5 of 6 « First<23456>


Hop to:

se7enet

Barack Obama Logo