Some Custom GM Commands

Post Reply
User avatar
demolish
Developer
Posts: 262
Joined: Thu Jul 26, 2012 7:12 am

Some Custom GM Commands

Post by demolish » Thu May 23, 2013 9:42 am

Code: Select all

commands_ini[64]  = { ["name"] = "givespell",         ["path"] = "scripts/commands", ["permission"] = "1", ["parameters"] = "si"  };
commands_ini[65]  = { ["name"] = "capplayerskill",   ["path"] = "scripts/commands", ["permission"] = "1", ["parameters"] = "ss"  };
commands_ini[66]  = { ["name"] = "teleplayer",       ["path"] = "scripts/commands", ["permission"] = "1", ["parameters"] = "siiii"  };
commands_ini[67]  = { ["name"] = "op",        	      ["path"] = "scripts/commands", ["permission"] = "1", ["parameters"] = "ss"  };
@givespell is to add spells to players who lost them due to some bug, spell IDs can be found here
http://wiki.dspt.info/index.php?title=S ... oldid=7098

@capplayerskill to use on players that had bugged chars and lost skill (doubt this will be used much) e.g.
@capplayerskill demolish enhancing

@teleplayer is to teleport players to a pos/zone in x,y,z coordinates e.g.
@teleplayer demolish -10 2 3 for players to tele to that pos in the same zone
@teleplayer demolish -10 2 3 235 to teleport players to that pos in zone 235
To teleport them to just the zone (without, type
@teleplayer demolish 0 0 0 235

@op to tele players to an outpost e.g.
@op demolish yuhtunga
full list of OP names here:

Code: Select all

West Ronfaure:
Ronfaure Region = ronfaure OR Ronfaure 

Valkurm Dunes:
Zulkheim Region = zulkheim OR Zulkheim

Jugner Forest::
Norvallen Region = norvallen OR Norvallen

North Gustaberg:
Gustaberg Region = gustaberg OR Gustaberg

Pashhow Marshlands:
Derfland Region = derflands OR Derflands

West Sarutabaruta:
Sarutabaruta Region = sarutabaruta OR Sarutabaruta

Buburimu Peninsula:
Kolshushu Region = kolshushu OR Kolshushu

Meriphataud Mountains:
Aragoneu Region = aragoneu OR Aragoneu

Beaucedine Glacier:
Fauregandi Region = fauregandi OR Fauregandi

Qufim Island:
Qufim Island = qufim OR Qufim

Sanctuary of Zi'Tah:
Li'Telor Region = litelor OR LiTelor

Eastern Altepa Desert:
Kuzotz Region = kuzotz OR Kuzotz

Cape Teriggan:
Vollbow Region = vollbow OR Vollbow

Yuhtunga Jungle:
Elshimo Lowlands = yuhtunga OR Yuhtunga

Yhoator Jungle:
Elshimo Uplands = yhoator OR Yhoator

Ru'Aun Gardens:
Tu'Lia = tulia OR TuLia

Lufaise Meadows:
Tavnazian Archipelago = tavnazia OR Tavnazia
Attachments
commands.zip
(2.06 KiB) Downloaded 219 times
Last edited by demolish on Wed Aug 07, 2013 6:00 pm, edited 1 time in total.
<Giblet[NewBrain]> kj with this first step would be fine on my shit
Click here for a guide on scripting missions.

User avatar
demolish
Developer
Posts: 262
Joined: Thu Jul 26, 2012 7:12 am

Re: Some Custom GM Commands

Post by demolish » Wed Aug 07, 2013 5:58 pm

Code: Select all

commands_ini[64]  = { ["name"] = "givespell",         ["path"] = "scripts/commands", ["permission"] = "1", ["parameters"] = "si"  };
commands_ini[65]  = { ["name"] = "capplayerskill",   ["path"] = "scripts/commands", ["permission"] = "1", ["parameters"] = "ss"  };
commands_ini[66]  = { ["name"] = "teleplayer",       ["path"] = "scripts/commands", ["permission"] = "1", ["parameters"] = "siiii"  };
commands_ini[67]  = { ["name"] = "op",        	      ["path"] = "scripts/commands", ["permission"] = "1", ["parameters"] = "ss"  };
Updated for GM permissions thingy, use the stuff above in commands.conf
<Giblet[NewBrain]> kj with this first step would be fine on my shit
Click here for a guide on scripting missions.

Post Reply