DeleteLocalInt(object, string)

オブジェクトに設定された整数型のローカル変数を削除・開放する。

void DeleteLocalInt(
    object oObject,
    string sVarName
);

Parameters

oObject

変数を保存する対象オブジェクト

sVarName

削除する変数の名称


Description

oObjectに定義されたsVarNameという名称の整数型ローカル変数を削除・開放する。



Version

1.22

Example

// 会話しているプレイヤーの整数型ローカル変数nCounterを削除する。
object oPC = GetPCSpeaker();
DeleteLocalInt(oPC, "nCounter");

See Also

categories: Local Variables Functions


author: Michael Nork, editor: Jeff Lindsey, JP team: ngtaicho
Send comments on this topic.