
04-10-2006, 04:35 AM
|
|
oh snaps
|
 |
Join Date: Sep 2003
Location: Pismo Beach, California
Posts: 2,118
|
|
Quote:
|
Originally Posted by Prozac
I checked the wiki but could only get player.colors[array].
Where can I get a list of every player.attribute
such as
player.hearts
player.rupees
player.swordpower
player.chat
for absolutely everything that belongs to the player?
|
http://wiki.graal.net/index.php/Crea.../TServerPlayer
http://wiki.graal.net/index.php/Crea...ns:_NPC_Server
-Find TServerPlayer
Quote:
|
Originally Posted by Prozac
Let's say I have a database npc called foo.
i want to give foo a variable called bar with a value of "foobar".
then I want to set the player.chat to the value of foo's variable bar.
then i want to change foo's variable bar to be the player's chat string.
never seen an example of how to do that with a database npc, can't find one... please provide npc-speak to that algorithm. thanks in advance
|
PHP Code:
temp.db = findnpc("foo");
temp.db.bar = "foobar";
player.chat = temp.db.bar;
|
__________________
Scito hoc super omnia.
Haec vita est tua una sola.
Dum vita superest, utere maxime quoque puncto, momento, et hora quae habes.
Tempus neminem non manet.
Noli manere tempus.
Carpe Diem
Seize the Day.
|
|
|
|