Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 5

RP Shaper

Beam System1.0
User Manual
User Manual
User
INOManual
00-1813

2011

Copyright Dialsoft 2011-


Table of Contents
LIST OF FIGURES...................................................................................................................................................................2
1 QUICKSTART.................................................................................................................................................................3
1.1. INFO..........................................................................................................................................................................3
2 GENERAL INFORMATION.........................................................................................................................................3
2.1. CREATE RP PHASE....................................................................................................................................................3
2.2. MANAGE YOUR RP PHASE........................................................................................................................................4
2.3. JOIN..........................................................................................................................................................................4
2.4. SIGNAL NOT RP PHASE............................................................................................................................................4
2.5. RP INTERCATION POINTS..........................................................................................................................................4
3 General information...........................................................................................................................................................5

LIST OF FIGURES

FIGURE 1 -CREATE RP.....................................................................................................................................3


FIGURE 2 - MANAGE YOUR RP PHASE.............................................................................................................4
I QUICKSTART

I.A. INFO
Quick document to explain how roleplay system works.

II GENERAL INFORMATION
All player start with RP level 0. When he participates to RP events, he will do RP experience and
upgrade his RP level. When player reach level 10 he will get ability to start new phase roleplay.
For this system a GM need to select some player and manually give right to start RP events. The
GM need to set flag 20183 to 1 and his RP level to 10. GM can also view or set RP points and RP
level for any player with command: Set player’s RPLEVEL to X and Set player’s RPPOINT to X.
GM can also block user to participate on RP events by settings his flag 20183 to 2. You need to
create in panel the chatter canal “Phase roleplay”.

II.A. CREATE RP PHASE

Figure 1 -Create RP
To create RP phase, player need to have level RP level 10 or more. Press RP Interaction button
on character page. Need to enter the RP title. This title will be sent on the phase roleplay CC to
invite any other player to join this RP phase.
II.B. MANAGE YOUR RP PHASE

Figure 2 - manage your RP Phase


After your RP phase was created, you can stop this RP with Ended button, invite a player with
Invite button or expulse player with Throw out button.

II.C. JOIN
To join RP phase, press RP Interaction button on character page. After that you can leave this RP
phase at any time by clicking Exit button inside RP page.

II.D. SIGNAL NOT RP PHASE


Any user at any time can signal he currently have a not RP phase in progress… GM can valid and
close this phase if is true.

II.E. RP INTERCATION POINTS


This RP System gives RP/PVP points. Those points are stored in flag 20192 and 20193. You can
use those points with an NPC to exchange them for items / gold / XP. 20192 is the currently
available point flag to make an exchange. 20193 is the total of points a player gains (normally
this value is not to be modified, ever). A GM can do what he wants with those points. Note:
Arena System give the same points.
III GENERAL INFORMATION
You can enable / disable this system with GM Command : INTERACTIONRP $ on/off
You can get all RP Events with command: RPGETLIST
You can terminate any RP with command: RPTERMINATERP $ (Rp ID)

The RP flags is 20183 : 0= Player don’t have right to start RP Phase.


1= Player have ability to start Rp phase.
2= Player have lost any RP ability.

Set player’s RPLEVEL to X (between 0 to 99)

The Rp/Xp Chart algo code…

int iCntStep = 0;
for(int i=0;i<100;i++)
{
iCntStep = (i+1)*100;
g_dwRPXPTableToLevel[i] = iCntStep;
if(i == 0)
g_dwRPXPTable[i] = iCntStep;
else
g_dwRPXPTable[i] = g_dwRPXPTable[i-1] + iCntStep;
}

Level 0: 100
Level 1: 300
Level 2: 600

Level 99: 505000

You might also like