mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2025-12-09 16:45:44 -07:00
Added initial version
This commit is contained in:
commit
b452bd670c
13290 changed files with 1178433 additions and 0 deletions
14
dumps/scripts/2263.cs2
Normal file
14
dumps/scripts/2263.cs2
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
void script_2263(int arg0,int arg1,string arg2,string arg3) {
|
||||
if (arg1 != 1) {
|
||||
setWidgetContextMenuOption(1, new WidgetPointer(arg0), "Make 1 " + arg3 + "(" + intToStr(arg1) + ") ");
|
||||
setWidgetContextMenuOption(2, new WidgetPointer(arg0), "Make 5 " + arg3 + "(" + intToStr(multiply(arg1, 5)) + ")");
|
||||
setWidgetContextMenuOption(3, new WidgetPointer(arg0), "Make X " + arg3);
|
||||
setWidgetContextMenuOption(4, new WidgetPointer(arg0), "Make All " + arg3);
|
||||
return;
|
||||
}
|
||||
setWidgetContextMenuOption(1, new WidgetPointer(arg0), "Make 1 " + arg2);
|
||||
setWidgetContextMenuOption(2, new WidgetPointer(arg0), "Make 5 " + arg3);
|
||||
setWidgetContextMenuOption(3, new WidgetPointer(arg0), "Make X " + arg3);
|
||||
setWidgetContextMenuOption(4, new WidgetPointer(arg0), "Make All " + arg3);
|
||||
return;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue