The following warnings occurred:
Warning [2] Use of undefined constant SAPI_NAME - assumed 'SAPI_NAME' (this will throw an Error in a future version of PHP) - Line: 3388 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3388 errorHandler->error
/showthread.php 116 build_archive_link
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/inc/functions.php 3324 build_forum_breadcrumb
/showthread.php 195 build_forum_breadcrumb
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/showthread.php 195 build_forum_breadcrumb






Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Question : Getting the @create-Color via Itemdef
Author Message
Shidhun
Journeyman
*

Posts: 59
Likes Given: 5
Likes Received: 3 in 3 posts
Joined: Jul 2012
Reputation: 1



Post: #1
Question : Getting the @create-Color via Itemdef
Hello,

i have just a small question regarding Serv.Itemdef

Is there a command to get the Color (or another attribute) that one Item gets after create?

I want to check if an Item was altered, after it has been created.

Lets say i have a Rose-Heater. @create the Heater normally gets the color (color=color_o_rose). Now i want to check if it still has this defined color (or another attribut) or if it was changed by a gm or by anything else.

I tried it with something like :

if (<serv.itemdef.(argo.id).color> = <argo.color>)

but this didn't work, i assume because of sphere checking the status before @create

Of course i could use other checks using defnames or creating a dummy-item, but this is not a fine way
03-01-2013 06:04 PM
Find all posts by this user Like Post Quote this message in a reply
darksun84
Sir Spamalot
****

Posts: 1,687
Likes Given: 245
Likes Received: 162 in 151 posts
Joined: Mar 2012
Reputation: 35



Post: #2
RE: Question : Getting the @create-Color via Itemdef
There isn't a color field in a ITEMDEF definition, but it's only used as item property.
(This post was last modified: 03-01-2013 07:38 PM by darksun84.)
03-01-2013 07:37 PM
Find all posts by this user Like Post Quote this message in a reply
admin phoenix
Master
**

Posts: 354
Likes Given: 1
Likes Received: 23 in 13 posts
Joined: Mar 2012
Reputation: 3



Post: #3
RE: Question : Getting the @create-Color via Itemdef
you have to create the item too via script and then check the color like
serv.newitem=i_your_item
local.color=<new.color>
03-01-2013 07:58 PM
Find all posts by this user Like Post Quote this message in a reply
Shidhun
Journeyman
*

Posts: 59
Likes Given: 5
Likes Received: 3 in 3 posts
Joined: Jul 2012
Reputation: 1



Post: #4
RE: Question : Getting the @create-Color via Itemdef
I see,

so the only way would be to use a workaround like this ?

Example:
serv.newitem <serv.itemdef.<argo.id>>
local.color= <new.color>
new.remove
if !(<local.color> = <argo.color>)
src.sysmessage Abort: Item was manipulated
return 1
endif

EDIT ; Phoenix was first Tongue i should write faster
(This post was last modified: 03-01-2013 08:01 PM by Shidhun.)
03-01-2013 08:00 PM
Find all posts by this user Like Post Quote this message in a reply
RanXerox
Master
**

Posts: 550
Likes Given: 1
Likes Received: 12 in 9 posts
Joined: Dec 2010
Reputation: 19



Post: #5
RE: Question : Getting the @create-Color via Itemdef
You can add a permanent TAG to any ITEMDEF and reference that tag in your script... the ITEMDEF might looks like this:

Code:
[ITEMDEF 02db]
//"One of the keys to access Dreadhorn.
// Found on the ground in Twisted Weald, this item has a timed life span."
DEFNAME=i_blighted_cotton
NAME=blighted cotton
TYPE=t_normal
VALUE=100
WEIGHT=1.0
CATEGORY=Quest
SUBSECTION=Twisted Weald
DESCRIPTION=Blighted Cotton
TAG.TrueColor=05a3
TEVENTS=e_timed_key
ON=@Create
   COLOR=<TAG.TrueColor>
03-02-2013 09:30 AM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 2 Guest(s)