Difference between revisions of "NewUserWalkthrough:Page2"
From ISXOgre
Line 10: | Line 10: | ||
* Responding to events from characters (such as accepting group invites, or accepting a res) | * Responding to events from characters (such as accepting group invites, or accepting a res) | ||
* Connecting to other computers via Innerspace's uplink | * Connecting to other computers via Innerspace's uplink | ||
+ | |||
+ | Navigate to the following directory: /scripts/EQ2OgreCommon/DoNotShareWithOthers/ | ||
+ | |||
+ | In here you will find 2 files, Blank.EQ2Chars.inc and readme.txt. First thing you need to do, is rename the file from "Blank.EQ2Chars.inc" to "EQ2Chars.inc". Now edit the file (you can right click -edit). | ||
+ | |||
+ | The first function you should see is: | ||
+ | <code> | ||
+ | function SetUpUplink() | ||
+ | { | ||
+ | UplinkInfo[${UplinkCount:Inc}]:Set[CompName1] | ||
+ | UplinkInfo[${UplinkCount:Inc}]:Set[CompName2] | ||
+ | } | ||
+ | </code> |
Revision as of 13:08, 28 April 2010
New User Walkthrough - Page 2: EQ2Chars.inc
EQ2Chars.inc
First thing you have to do, is setup a file called EQ2chars.inc. This file contains private information the bot needs to complete some functions. This file is used for the following reasons:
- Auto-logging toons in
- Allowing other toons to give commands (such as making you a leader)
- Responding to events from characters (such as accepting group invites, or accepting a res)
- Connecting to other computers via Innerspace's uplink
Navigate to the following directory: /scripts/EQ2OgreCommon/DoNotShareWithOthers/
In here you will find 2 files, Blank.EQ2Chars.inc and readme.txt. First thing you need to do, is rename the file from "Blank.EQ2Chars.inc" to "EQ2Chars.inc". Now edit the file (you can right click -edit).
The first function you should see is:
function SetUpUplink()
{
UplinkInfo[${UplinkCount:Inc}]:Set[CompName1]
UplinkInfo[${UplinkCount:Inc}]:Set[CompName2]
}