mirror of
https://github.com/PoshoDev/DexTool.git
synced 2026-08-11 03:56:27 -05:00
01/08/2020 #1
This commit is contained in:
@@ -52460,7 +52460,6 @@
|
||||
<object>objects\obj_global</object>
|
||||
<object>objects\obj_slot</object>
|
||||
<object>objects\obj_header</object>
|
||||
<object>objects\object3</object>
|
||||
</objects>
|
||||
<rooms name="rooms">
|
||||
<room>rooms\rom_dex</room>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -183,7 +183,7 @@ for (global.box_count=1; global.current<global.dex_len; global.box_count++)
|
||||
{
|
||||
if (global.current<global.dex_len && !jump)
|
||||
{
|
||||
while(!check_skip(global.current))
|
||||
while(/*global.savedata[global.current] || */ !check_skip(global.current))
|
||||
global.current++;
|
||||
|
||||
if (!check_jump(j, i, global.current))
|
||||
@@ -194,8 +194,6 @@ for (global.box_count=1; global.current<global.dex_len; global.box_count++)
|
||||
else
|
||||
jump = true;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
</string>
|
||||
@@ -424,6 +422,28 @@ draw_guidelines(false);
|
||||
</arguments>
|
||||
</action>
|
||||
</event>
|
||||
<event eventtype="9" enumb="83">
|
||||
<action>
|
||||
<libid>1</libid>
|
||||
<id>603</id>
|
||||
<kind>7</kind>
|
||||
<userelative>0</userelative>
|
||||
<isquestion>0</isquestion>
|
||||
<useapplyto>-1</useapplyto>
|
||||
<exetype>2</exetype>
|
||||
<functionname></functionname>
|
||||
<codestring></codestring>
|
||||
<whoName>self</whoName>
|
||||
<relative>0</relative>
|
||||
<isnot>0</isnot>
|
||||
<arguments>
|
||||
<argument>
|
||||
<kind>1</kind>
|
||||
<string></string>
|
||||
</argument>
|
||||
</arguments>
|
||||
</action>
|
||||
</event>
|
||||
</events>
|
||||
<PhysicsObject>0</PhysicsObject>
|
||||
<PhysicsObjectSensor>0</PhysicsObjectSensor>
|
||||
|
||||
@@ -113,7 +113,7 @@ color = get_color3(own, true);
|
||||
<kind>1</kind>
|
||||
<string>/// CLICKEDY CLICK
|
||||
|
||||
if (++own > 6)
|
||||
if (++own > 4)
|
||||
own = 0;
|
||||
|
||||
global.various_to = own;
|
||||
|
||||
@@ -6,10 +6,8 @@ if (!argument1)
|
||||
case 0: return c_white;
|
||||
case 1: return c_red;
|
||||
case 2: return c_blue;
|
||||
case 3: return c_orange;
|
||||
case 4: return c_purple;
|
||||
case 5: return c_yellow;
|
||||
case 6: return c_aqua;
|
||||
case 3: return c_yellow;
|
||||
case 4: return c_aqua;
|
||||
}
|
||||
else
|
||||
switch(argument0)
|
||||
@@ -19,6 +17,4 @@ else
|
||||
case 2: return c_navy;
|
||||
case 3: return c_dkgray;
|
||||
case 4: return c_dkgray;
|
||||
case 5: return c_dkgray;
|
||||
case 6: return c_dkgray;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user